Set default theme on account creation

This commit is contained in:
Socks 2018-02-24 19:05:32 +00:00
parent eede104212
commit ddce8c2636

View file

@ -112,7 +112,8 @@ def create_account(email, username, password):
'password': hashed_password, 'password': hashed_password,
'verified': False, 'verified': False,
'following': [], 'following': [],
'profile': {} 'profile': {},
'theme': 'default',
}) })
return { return {