wip: add missing migration to auth_oidc squash migrations

This commit is contained in:
Benjamin Dauvergne 2024-02-27 17:41:35 +01:00
parent 4f379a9832
commit 50e5a0b22f
2 changed files with 13 additions and 1 deletions

View File

@ -27,6 +27,7 @@ class Migration(migrations.Migration):
('authentic2_auth_oidc', '0014_oidcprovider_passive_authn_supported'),
('authentic2_auth_oidc', '0015_auto_20220922_1152'),
('authentic2_auth_oidc', '0016_auto_20221019_1148'),
('authentic2_auth_oidc', '0017_oidcprovider_jwkset_url'),
]
initial = True
@ -184,6 +185,16 @@ class Migration(migrations.Migration):
'passive_authn_supported',
models.BooleanField(default=True, verbose_name='Supports passive authentication'),
),
(
'jwkset_url',
models.URLField(
blank=True,
help_text='This URL is usually part of the “well-known” URLs as per the OIDC specifications',
max_length=256,
default='',
verbose_name="URL of the provider's JSON WebKey Set",
),
),
],
options={
'verbose_name': 'OpenID Connect',

View File

@ -24,12 +24,13 @@ class Migration(migrations.Migration):
('authentic2_auth_oidc', '0014_oidcprovider_passive_authn_supported'),
('authentic2_auth_oidc', '0015_auto_20220922_1152'),
('authentic2_auth_oidc', '0016_auto_20221019_1148'),
('authentic2_auth_oidc', '0017_oidcprovider_jwkset_url'),
]
initial = True
dependencies = [
('authentic2_auth_oidc', '0015_replace'),
('authentic2_auth_oidc', '0018_replace'),
('custom_user', '0037_replace'),
]