From ddce8c26366101981d7e72319734734eef256902 Mon Sep 17 00:00:00 2001 From: Socks Date: Sat, 24 Feb 2018 19:05:32 +0000 Subject: [PATCH] Set default theme on account creation --- backend/accounts.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/backend/accounts.py b/backend/accounts.py index d0f1530..0f505e6 100644 --- a/backend/accounts.py +++ b/backend/accounts.py @@ -112,7 +112,8 @@ def create_account(email, username, password): 'password': hashed_password, 'verified': False, 'following': [], - 'profile': {} + 'profile': {}, + 'theme': 'default', }) return {