-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
to make it possible to disable group assignment
- Loading branch information
Showing
2 changed files
with
24 additions
and
0 deletions.
There are no files selected for viewing
23 changes: 23 additions & 0 deletions
23
mozilla_django_oidc_db/migrations/0014_alter_openidconnectconfig_groups_claim.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,23 @@ | ||
# Generated by Django 3.2.23 on 2024-01-09 10:38 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("mozilla_django_oidc_db", "0013_merge_20231221_1529"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="openidconnectconfig", | ||
name="groups_claim", | ||
field=models.CharField( | ||
blank=True, | ||
default="roles", | ||
help_text="The name of the OIDC claim that holds the values to map to local user groups.", | ||
max_length=50, | ||
verbose_name="groups claim", | ||
), | ||
), | ||
] |
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