1
0
mirror of https://github.com/Mailu/Mailu.git synced 2025-08-10 22:31:47 +02:00

Update core/admin/mailu/api/v1/user.py

doh

Co-authored-by: Dimitri Huisman <52963853+Diman0@users.noreply.github.com>
This commit is contained in:
Florent Daigniere
2023-08-18 17:45:40 +02:00
committed by GitHub
parent a338e9c75e
commit 4c675009a2

View File

@@ -209,7 +209,7 @@ class User(Resource):
if 'enabled' in data:
user_found.enabled = data['enabled']
if 'change_pw_next_login' in data:
user_new.change_pw_next_login = data['change_pw_next_login']
user_found.change_pw_next_login = data['change_pw_next_login']
if 'enable_imap' in data:
user_found.enable_imap = data['enable_imap']
if 'enable_pop' in data: