-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🔥 Remove oidc_exempt_urls from config models
this field was never actually used, and it does not make sense to make settings that refer to Django stuff (URL patterns in this case) manually configurable instead of programmatically. It caused issues in Open Forms (#4435) where it required manual action from admins if it was kept as a model field.
- Loading branch information
Showing
2 changed files
with
32 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
32 changes: 32 additions & 0 deletions
32
digid_eherkenning/oidc/migrations/0009_remove_digidconfig_oidc_exempt_urls_and_more.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Generated by Django 4.2.11 on 2024-07-01 15:15 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
( | ||
"digid_eherkenning_oidc_generics", | ||
"0008_digidconfig_loa_value_mapping_and_more", | ||
), | ||
] | ||
|
||
operations = [ | ||
migrations.RemoveField( | ||
model_name="digidconfig", | ||
name="oidc_exempt_urls", | ||
), | ||
migrations.RemoveField( | ||
model_name="digidmachtigenconfig", | ||
name="oidc_exempt_urls", | ||
), | ||
migrations.RemoveField( | ||
model_name="eherkenningbewindvoeringconfig", | ||
name="oidc_exempt_urls", | ||
), | ||
migrations.RemoveField( | ||
model_name="eherkenningconfig", | ||
name="oidc_exempt_urls", | ||
), | ||
] |