Fix user edit dialog

This commit is contained in:
Emmanuel Viennet 2023-02-27 14:00:04 +01:00
parent cdb0cf99ed
commit b449546918
3 changed files with 5 additions and 3 deletions

View File

@ -234,7 +234,9 @@ def create_user_form(user_name=None, edit=0, all_roles=True):
H.append(f"<h2>Modification de l'utilisateur {user_name}</h2>")
submitlabel = "Modifier utilisateur"
if "roles_string" in initvalues:
initvalues["roles"] = initvalues["roles_string"].split(",")
initvalues["roles"] = [
r.strip() for r in initvalues["roles_string"].split(",")
]
else:
initvalues["roles"] = []
if "date_expiration" in initvalues:

View File

@ -107,7 +107,7 @@ def validate(ticket):
Will attempt to validate the ticket. If validation fails, then False
is returned. If validation is successful, then True is returned
and the validated username is saved in the session under the
key `CAS_USERNAME_SESSION_KEY` while tha validated attributes dictionary
key `CAS_USERNAME_SESSION_KEY` while the validated attributes dictionary
is saved under the key 'CAS_ATTRIBUTES_SESSION_KEY'.
"""

View File

@ -1,7 +1,7 @@
# -*- mode: python -*-
# -*- coding: utf-8 -*-
SCOVERSION = "9.4.53"
SCOVERSION = "9.4.54"
SCONAME = "ScoDoc"