Skip to content

Commit

Permalink
added keycloak as social choise group for import
Browse files Browse the repository at this point in the history
  • Loading branch information
lme-nca committed Mar 15, 2024
1 parent b647ba1 commit b2bd939
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions dojo/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,8 +249,10 @@ class UserContactInfo(models.Model):

class Dojo_Group(models.Model):
AZURE = 'AzureAD'
KEYCLOAK = 'Keycloak'
SOCIAL_CHOICES = (
(AZURE, _('AzureAD')),
(KEYCLOAK, _('Keycloak')),
)
name = models.CharField(max_length=255, unique=True)
description = models.CharField(max_length=4000, null=True, blank=True)
Expand Down

0 comments on commit b2bd939

Please sign in to comment.