mirrormanager: make the ADMIN_GROUP be a list instead of a tuple

Signed-off-by: Pierre-Yves Chibon <pingou@pingoured.fr>
This commit is contained in:
Pierre-Yves Chibon 2021-04-03 19:14:30 +02:00
parent 00804542f3
commit 404b18b99d

View file

@ -65,7 +65,7 @@ MM_AUTHENTICATION = 'fas'
# If the authentication method is `fas`, groups in which should be the user
# to be recognized as an admin.
ADMIN_GROUP = ('sysadmin-main', 'sysadmin-web')
ADMIN_GROUP = ['sysadmin-main', 'sysadmin-web']
# Email of the admin to which send notification or error
ADMIN_EMAIL = ['admin@fedoraproject.org', 'adrian@fedoraproject.org']