mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2025-04-03 00:07:05 +00:00
Fixed SIM103 (needless-bool): Return the condition not "admin" not in privs
directly
This commit is contained in:
parent
d9d6e96d69
commit
0c44319864
@ -688,8 +688,7 @@ def check_request_cookie_for_admin_access():
|
||||
if not session: return False
|
||||
privs = get_mail_user_privileges(session["email"], env)
|
||||
if not isinstance(privs, list): return False
|
||||
if "admin" not in privs: return False
|
||||
return True
|
||||
return "admin" in privs
|
||||
|
||||
def authorized_personnel_only_via_cookie(f):
|
||||
@wraps(f)
|
||||
|
Loading…
Reference in New Issue
Block a user