Skip to content

Commit 725b40a

Browse files
committed
Remove TODOs
1 parent 44172e1 commit 725b40a

17 files changed

+2
-361
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@ dist
393393
# vuepress build output
394394
.vuepress/dist
395395

396-
# vuepress v2.x temp and cache directory
396+
# vuepress v2.x temporary and cache directory
397397
.temp
398398

399399
# Docusaurus cache and generated files

backend/donations/models/donors.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,6 @@ class Donor(models.Model):
5151

5252
ngo = models.ForeignKey("Ngo", verbose_name=_("NGO"), on_delete=models.SET_NULL, db_index=True, null=True)
5353

54-
# TODO: first name and last name have been swapped
55-
# https://github.com/code4romania/redirectioneaza/issues/269
5654
l_name = models.CharField(verbose_name=_("last name"), blank=True, null=False, default="", max_length=100)
5755
f_name = models.CharField(verbose_name=_("first name"), blank=True, null=False, default="", max_length=100)
5856
initial = models.CharField(verbose_name=_("initials"), blank=True, null=False, default="", max_length=5)

backend/donations/views/donations_download.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,8 +134,6 @@ def _package_donations(tmp_dir_name: str, donations: QuerySet[Donor], ngo: Ngo,
134134
detailed_address: Dict = _get_address_details(donation_object)
135135
donations_data.append(
136136
{
137-
# TODO: first name and last name have been swapped
138-
# https://github.com/code4romania/redirectioneaza/issues/269
139137
"last_name": donation_object.l_name,
140138
"first_name": donation_object.f_name,
141139
"initial": donation_object.initial,

backend/importer/__init__.py

Whitespace-only changes.

backend/importer/apps.py

Lines changed: 0 additions & 8 deletions
This file was deleted.

backend/importer/extract.py

Lines changed: 0 additions & 66 deletions
This file was deleted.

backend/importer/migrations/0001_initial.py

Lines changed: 0 additions & 48 deletions
This file was deleted.

backend/importer/migrations/0002_alter_importjob_import_type.py

Lines changed: 0 additions & 27 deletions
This file was deleted.

backend/importer/migrations/0003_alter_importjob_csv_file.py

Lines changed: 0 additions & 18 deletions
This file was deleted.

backend/importer/migrations/0004_alter_importjob_options_remove_importjob_csv_file_and_more.py

Lines changed: 0 additions & 37 deletions
This file was deleted.

backend/importer/migrations/0005_delete_importjob.py

Lines changed: 0 additions & 16 deletions
This file was deleted.

backend/importer/migrations/__init__.py

Whitespace-only changes.

backend/importer/tasks/__init__.py

Whitespace-only changes.

backend/importer/tasks/donor_forms.py

Lines changed: 0 additions & 63 deletions
This file was deleted.

backend/importer/tasks/repair_addresses.py

Lines changed: 0 additions & 67 deletions
This file was deleted.

backend/importer/tasks/utils.py

Lines changed: 0 additions & 4 deletions
This file was deleted.

0 commit comments

Comments
 (0)