From 7525708dcee226df1181e42f81796071a07d6236 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Phillip=20K=C3=BChne?= Date: Fri, 30 Jun 2023 15:32:13 +0200 Subject: [PATCH] lowered maxqueue to 10 and participant quota to 2 --- backend/helpers.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/helpers.py b/backend/helpers.py index 9dab0a5..9e3cde4 100644 --- a/backend/helpers.py +++ b/backend/helpers.py @@ -91,8 +91,8 @@ def setup_config(app: Flask): exit() default_config = {'username': initial_username, 'password': initial_password, - 'entryquota': 3, - 'maxqueue': 20, + 'entryquota': 2, + 'maxqueue': 10, 'entries_allowed': 1, 'theme': 'default.css'} for key, value in default_config.items():