This commit is contained in:
Aevann1 2022-04-25 18:38:06 +02:00
parent b6ba26f758
commit c21f04d664
11 changed files with 42 additions and 42 deletions

View file

@ -23,8 +23,8 @@ from files.helpers.security import *
import random
from os import environ, remove, path
defaulttheme = environ.get("DEFAULT_THEME", "midnight").strip()
defaulttimefilter = environ.get("DEFAULT_TIME_FILTER", "all").strip()
defaulttheme = environ.get("DEFAULT_THEME", "midnight")
defaulttimefilter = environ.get("DEFAULT_TIME_FILTER", "all")
cardview = bool(int(environ.get("CARD_VIEW", 1)))
class User(Base):