Fixes usersettings never reached the client's browser
This commit is contained in:
parent
1d3eecd7d0
commit
8e235af339
1 changed files with 1 additions and 1 deletions
|
|
@ -474,7 +474,7 @@ class User(UserMixin):
|
||||||
|
|
||||||
class SessionUser(User):
|
class SessionUser(User):
|
||||||
def __init__(self, user):
|
def __init__(self, user):
|
||||||
User.__init__(self, user._username, user._passwordHash, user._active, user._roles, user._apikey)
|
User.__init__(self, user._username, user._passwordHash, user._active, user._roles, user._apikey, user._settings)
|
||||||
|
|
||||||
import string
|
import string
|
||||||
import random
|
import random
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue