Change HALDIS_ADMIN_USERS configuration key to the one actually used

This commit is contained in:
Charlotte Van Petegem 2022-05-20 19:32:59 +02:00
parent 0e0771bae1
commit ab47c0a882
No known key found for this signature in database
GPG Key ID: 019E764B7184435A
2 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@ Afterwards upgrade the database to the latest version using
cd app
python3 app.py db upgrade
You can now still seed the database by running, note that you might want to put your name in the `HALDIS_ADMIN_USERS` in `app/config.py`
You can now still seed the database by running, note that you might want to put your name in the `HALDIS_ADMINS` in `app/config.py`
./populate-db.sh

View File

@ -8,7 +8,7 @@ class Configuration:
SQLALCHEMY_DATABASE_URI = "sqlite:///haldis.db"
SQLALCHEMY_TRACK_MODIFICATIONS = False
DEBUG = True
HALDIS_ADMIN_USERS = []
HALDIS_ADMINS = []
SECRET_KEY = "<change>"
SLACK_WEBHOOK = None
LOGFILE = "haldis.log"