Skip to content

Commit

Permalink
Add missimg migration from ansible#407
Browse files Browse the repository at this point in the history
Signed-off-by: Rick Elrod <[email protected]>
  • Loading branch information
relrod committed Jun 6, 2024
1 parent 0597c54 commit 5663b33
Showing 1 changed file with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 4.2.11 on 2024-06-06 17:04

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('dab_authentication', '0011_authenticatormap_role_and_more'),
]

operations = [
migrations.AlterField(
model_name='authenticatormap',
name='map_type',
field=models.CharField(choices=[('allow', 'allow'), ('is_superuser', 'is_superuser'), ('role', 'role'), ('organization', 'organization'), ('team', 'team')], default='team', help_text='What will the map grant the user? System access (allow) a team or organization membership, the superuser flag or a role in the system', max_length=17),
),
]

0 comments on commit 5663b33

Please sign in to comment.