Skip to content

Commit f7422cc

Browse files
authored
remove django app 'forma_form' (#1304)
1 parent 7cacb24 commit f7422cc

19 files changed

+31
-1095
lines changed

apps/core/management/commands/create_test_feature_switches.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77
("enable_swaggerui", True, "This enables a page for the openapi docs and a link to the page from the main page."),
88
("enable_testclient", True, "This enables the test client."),
99
("expire_grant_endpoint", True, "This enables the /v<1/2>/o/expire_authenticated_user/<patient_id>/ endpoint."),
10-
("interim-prod-access", True, "This controls access to the interim prod access form. \
11-
This is outdated and will be removed in a future ticket"),
1210
("login", True, "This enables login related URLs and code. See apps/accounts/urls.py file for more info."),
1311
("outreach_email", True, "This enables developer outreach emails. Not active in prod."),
1412
("require-scopes", True, "Thie enables enforcement of permission checking of scopes."),
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Generated by Django 4.2.17 on 2025-03-06 19:20
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('dot_ext', '0008_internalapplicationlabels_and_more'),
10+
]
11+
12+
operations = [
13+
migrations.CreateModel(
14+
name='InternalApplicationLabelsProxy',
15+
fields=[
16+
],
17+
options={
18+
'verbose_name': 'Internal Category',
19+
'verbose_name_plural': 'Internal Categories',
20+
'proxy': True,
21+
'indexes': [],
22+
'constraints': [],
23+
},
24+
bases=('dot_ext.internalapplicationlabels',),
25+
),
26+
migrations.AlterField(
27+
model_name='application',
28+
name='internal_application_labels',
29+
field=models.ManyToManyField(blank=True, to='dot_ext.internalapplicationlabels'),
30+
),
31+
]

apps/forms/__init__.py

Whitespace-only changes.

apps/forms/admin.py

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

apps/forms/apps.py

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

apps/forms/django_forms.py

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

apps/forms/migrations/0001_initial.py

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

apps/forms/migrations/0002_auto_20210903_0030.py

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

apps/forms/migrations/0003_alter_forms_form_data.py

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

apps/forms/migrations/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)