-
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.
🗃️ [#3623] Make new migrations after moz-django-oidc-db update
- Loading branch information
1 parent
8c49c24
commit 0cb5d55
Showing
1 changed file
with
52 additions
and
0 deletions.
There are no files selected for viewing
52 changes: 52 additions & 0 deletions
52
src/digid_eherkenning_oidc_generics/migrations/0002_auto_20240207_1546.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,52 @@ | ||
# Generated by Django 3.2.24 on 2024-02-07 14:46 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
( | ||
"digid_eherkenning_oidc_generics", | ||
"0001_initial_squashed_0007_auto_20221213_1347", | ||
), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="openidconnectdigidmachtigenconfig", | ||
name="oidc_token_use_basic_auth", | ||
field=models.BooleanField( | ||
default=False, | ||
help_text="If enabled, the client ID and secret are sent in the HTTP Basic auth header when obtaining the access token. Otherwise, they are sent in the request body.", | ||
verbose_name="Use Basic auth for token endpoint", | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="openidconnecteherkenningbewindvoeringconfig", | ||
name="oidc_token_use_basic_auth", | ||
field=models.BooleanField( | ||
default=False, | ||
help_text="If enabled, the client ID and secret are sent in the HTTP Basic auth header when obtaining the access token. Otherwise, they are sent in the request body.", | ||
verbose_name="Use Basic auth for token endpoint", | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="openidconnecteherkenningconfig", | ||
name="oidc_token_use_basic_auth", | ||
field=models.BooleanField( | ||
default=False, | ||
help_text="If enabled, the client ID and secret are sent in the HTTP Basic auth header when obtaining the access token. Otherwise, they are sent in the request body.", | ||
verbose_name="Use Basic auth for token endpoint", | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="openidconnectpublicconfig", | ||
name="oidc_token_use_basic_auth", | ||
field=models.BooleanField( | ||
default=False, | ||
help_text="If enabled, the client ID and secret are sent in the HTTP Basic auth header when obtaining the access token. Otherwise, they are sent in the request body.", | ||
verbose_name="Use Basic auth for token endpoint", | ||
), | ||
), | ||
] |