-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #938 from maykinmedia/feature/1920-oidc-cancellati…
…on-flow 🥅 [#1920] Show proper cancellation message for OIDC
- Loading branch information
Showing
6 changed files
with
418 additions
and
15 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
35 changes: 35 additions & 0 deletions
35
src/digid_eherkenning_oidc_generics/migrations/0002_auto_20240109_1055.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,35 @@ | ||
# Generated by Django 3.2.23 on 2024-01-09 09:55 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("digid_eherkenning_oidc_generics", "0001_initial"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="openidconnectdigidconfig", | ||
name="error_message_mapping", | ||
field=models.JSONField( | ||
blank=True, | ||
default=dict, | ||
help_text="Mapping that maps error messages returned by the identity provider to human readable error messages that are shown to the user", | ||
max_length=1000, | ||
verbose_name="Error message mapping", | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="openidconnecteherkenningconfig", | ||
name="error_message_mapping", | ||
field=models.JSONField( | ||
blank=True, | ||
default=dict, | ||
help_text="Mapping that maps error messages returned by the identity provider to human readable error messages that are shown to the user", | ||
max_length=1000, | ||
verbose_name="Error message mapping", | ||
), | ||
), | ||
] |
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
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
Oops, something went wrong.