lowered maxqueue to 10 and participant quota to 2

This commit is contained in:
2023-06-30 15:32:13 +02:00
parent b7a79462dc
commit 7525708dce

View File

@ -91,8 +91,8 @@ def setup_config(app: Flask):
exit() exit()
default_config = {'username': initial_username, default_config = {'username': initial_username,
'password': initial_password, 'password': initial_password,
'entryquota': 3, 'entryquota': 2,
'maxqueue': 20, 'maxqueue': 10,
'entries_allowed': 1, 'entries_allowed': 1,
'theme': 'default.css'} 'theme': 'default.css'}
for key, value in default_config.items(): for key, value in default_config.items():