Skip to content

Commit

Permalink
Merge pull request #76 from maykinmedia/issue/remove-oidc-exempt-urls
Browse files Browse the repository at this point in the history
🔥 Remove oidc_exempt_urls from config models
  • Loading branch information
sergei-maertens authored Jul 2, 2024
2 parents 874ab6a + 51c051b commit dcce734
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 2 deletions.
1 change: 0 additions & 1 deletion digid_eherkenning/oidc/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@
"oidc_use_nonce",
"oidc_nonce_size",
"oidc_state_size",
"oidc_exempt_urls",
"userinfo_claims_source",
),
"classes": ["collapse in"],
Expand Down
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",
),
]
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Changelog = "https://github.com/maykinmedia/django-digid-eherkenning/blob/master

[project.optional-dependencies]
oidc = [
"mozilla-django-oidc-db>=0.18.0",
"mozilla-django-oidc-db>=0.19.0",
]
tests = [
"django-test-migrations",
Expand Down

0 comments on commit dcce734

Please sign in to comment.