-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🚧 [#1471] Update OIDC module generics
- Loading branch information
1 parent
01704ab
commit 55052e0
Showing
3 changed files
with
56 additions
and
3 deletions.
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
33 changes: 33 additions & 0 deletions
33
src/digid_eherkenning_oidc_generics/migrations/0002_auto_20220331_1221.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,33 @@ | ||
# Generated by Django 3.2.12 on 2022-03-31 10:21 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("digid_eherkenning_oidc_generics", "0001_initial"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="openidconnectpublicconfig", | ||
name="gemachtigde_claim_name", | ||
field=models.CharField( | ||
default="gemachtigde.bsn", | ||
help_text="Name of the claim in which the BSN of the person representing someone else is stored", | ||
max_length=50, | ||
verbose_name="gemachtigde claim name", | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="openidconnectpublicconfig", | ||
name="vertegenwoordigde_claim_name", | ||
field=models.CharField( | ||
default="aanvrager.bsn", | ||
help_text="Name of the claim in which the BSN of the person being represented is stored", | ||
max_length=50, | ||
verbose_name="vertegenwoordigde claim name", | ||
), | ||
), | ||
] |
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