Skip to content

Commit

Permalink
🗃️ [#3623] Make new migrations after moz-django-oidc-db update
Browse files Browse the repository at this point in the history
  • Loading branch information
sergei-maertens committed Feb 7, 2024
1 parent 8c49c24 commit 0cb5d55
Showing 1 changed file with 52 additions and 0 deletions.
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",
),
),
]

0 comments on commit 0cb5d55

Please sign in to comment.