You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Looks like the rights file regex is compared case-sensitive by default. We have users whose URL is http://calurl/user/user.ics but the user is allows to login with credentials of User or usEr without any case checking. Is it possible to support this in rights file? Or in the code you could check regex match with
re.IGNORECASE
flag. The later seems like a good long term option.
The text was updated successfully, but these errors were encountered:
Suggestion: Add a flatten (all lowercase) or raise (all uppercase) to the username at login, ignoring case is fine for just all lowercase, but in some instances having the ability to do 2 of the same ID can be useful: USER would be easier to read in a list than user, especially with logins with i and l's in them, their uppercase counterparts are typically easier to read when looking for something manually.
Looks like the rights file regex is compared case-sensitive by default. We have users whose URL is http://calurl/user/user.ics but the user is allows to login with credentials of User or usEr without any case checking. Is it possible to support this in rights file? Or in the code you could check regex match with
flag. The later seems like a good long term option.
The text was updated successfully, but these errors were encountered: