diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2025-02-13 15:10:12 +0000 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2025-02-13 15:10:12 +0000 |
commit | 3fb99eb4be5f1c3199bdc2bab3c81f3195bf8710 (patch) | |
tree | f226a4dcf5a595fa846bcffab8e54c65b6881e9e /parsers/users.py | |
parent | 3a3e5765f921d30a10ca3eff3db616fb4b0d58fe (diff) | |
download | troggle-3fb99eb4be5f1c3199bdc2bab3c81f3195bf8710.tar.gz troggle-3fb99eb4be5f1c3199bdc2bab3c81f3195bf8710.tar.bz2 troggle-3fb99eb4be5f1c3199bdc2bab3c81f3195bf8710.zip |
lgoing/cookie interaction betetr
Diffstat (limited to 'parsers/users.py')
-rw-r--r-- | parsers/users.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/parsers/users.py b/parsers/users.py index fd971fb..662e5ba 100644 --- a/parsers/users.py +++ b/parsers/users.py @@ -20,12 +20,10 @@ Passwords are only ever stored as hashes using the standard Django functions. """ todo = """ -- Not fully tested, needs experience - - Need to check/register with lists.wookware.org for email """ -SUPER_USERS = ["philip-sargent"] # list of userids who get the same rights as "expoadmin" i.e. the Django control panel +SUPER_USERS = ["philip-sargent", "wookey"] # list of userids who get the same rights as "expoadmin" i.e. the Django control panel USERS_FILE = "users.json" ENCRYPTED_DIR = "encrypted" |