logout a disabled user
This commit is contained in:
parent
c4cae8d561
commit
cec84e1ec7
@ -82,6 +82,10 @@ def update_security(args=''):
|
|||||||
webnotes.conn.set_value('Profile', args['user'], 'login_before', args.get('login_before') or None)
|
webnotes.conn.set_value('Profile', args['user'], 'login_before', args.get('login_before') or None)
|
||||||
webnotes.conn.set_value('Profile', args['user'], 'enabled', int(args.get('enabled',0)) or 0)
|
webnotes.conn.set_value('Profile', args['user'], 'enabled', int(args.get('enabled',0)) or 0)
|
||||||
|
|
||||||
|
# logout a disabled user
|
||||||
|
if not int(args.get('enabled',0) or 0):
|
||||||
|
webnotes.login_manager.logout(user=args['user'])
|
||||||
|
|
||||||
if args.get('new_password') and args.get('sys_admin_pwd'):
|
if args.get('new_password') and args.get('sys_admin_pwd'):
|
||||||
from webnotes.utils import cint
|
from webnotes.utils import cint
|
||||||
webnotes.conn.sql("update tabProfile set password=password(%s) where name=%s",
|
webnotes.conn.sql("update tabProfile set password=password(%s) where name=%s",
|
||||||
|
Loading…
Reference in New Issue
Block a user