Skip to content

Commit

Permalink
Remove feature app
Browse files Browse the repository at this point in the history
  • Loading branch information
willemarcel committed Nov 28, 2023
1 parent 5078345 commit 949b7d7
Show file tree
Hide file tree
Showing 35 changed files with 0 additions and 2,090 deletions.
1 change: 0 additions & 1 deletion config/settings/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@
LOCAL_APPS = (
'osmchadjango.users', # custom users app
'osmchadjango.changeset',
'osmchadjango.feature',
'osmchadjango.supervise',
'osmchadjango.frontend',
'osmchadjango.roulette_integration',
Expand Down
109 changes: 0 additions & 109 deletions osmchadjango/changeset/management/commands/migrate_features.py

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
class Migration(migrations.Migration):

dependencies = [
('feature', '0009_remove_feature_user_detail'),
('changeset', '0029_suspiciousfeature_timestamp'),
]

Expand Down
4 changes: 0 additions & 4 deletions osmchadjango/changeset/migrations/0040_auto_20170328_1350.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,9 @@ def merge_suspicionreasons(apps, schema_editor):
if same_reasons.count() > 0:
for same_reason in same_reasons:
changesets = same_reason.changesets.all()
features = same_reason.features.all()
for c in changesets:
c.reasons.remove(same_reason)
c.reasons.add(reason)
for f in features:
f.reasons.remove(same_reason)
f.reasons.add(reason)
print("deleting %s" % same_reason.name)
same_reason.delete()

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ class Migration(migrations.Migration):

dependencies = [
('changeset', '0044_merge_20170330_1409'),
('feature', '0012_feature_harmful_reasons'),
]

operations = [
Expand Down
Empty file removed osmchadjango/feature/__init__.py
Empty file.
3 changes: 0 additions & 3 deletions osmchadjango/feature/admin.py

This file was deleted.

211 changes: 0 additions & 211 deletions osmchadjango/feature/filters.py

This file was deleted.

Loading

0 comments on commit 949b7d7

Please sign in to comment.