Skip to content

Commit

Permalink
add database change for keycloak social provider
Browse files Browse the repository at this point in the history
  • Loading branch information
lme-nca committed Mar 15, 2024
1 parent b2bd939 commit 4ca3857
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions dojo/db_migrations/0202_alter_dojo_group_social_provider.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 4.1.13 on 2024-03-15 09:31

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('dojo', '0201_populate_finding_sla_expiration_date'),
]

operations = [
migrations.AlterField(
model_name='dojo_group',
name='social_provider',
field=models.CharField(blank=True, choices=[('AzureAD', 'AzureAD'), ('Keycloak', 'Keycloak')], help_text='Group imported from a social provider.', max_length=10, null=True, verbose_name='Social Authentication Provider'),
),
]

0 comments on commit 4ca3857

Please sign in to comment.