diff options
author | Frederick Muriuki Muriithi | 2025-02-03 13:47:29 -0600 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2025-02-03 13:47:29 -0600 |
commit | 6bfa2b8b47f4eadb5159002450eef2ed60a27ced (patch) | |
tree | b0957ee4ed159728d6e19a3770ca7b8d15a6bfc8 /uploader/authorisation.py | |
parent | 14ccf06f59962a26898381acbec69e41be059bfd (diff) | |
download | gn-uploader-6bfa2b8b47f4eadb5159002450eef2ed60a27ced.tar.gz |
Make sign in/out terminology consistent with GN2.
Diffstat (limited to 'uploader/authorisation.py')
-rw-r--r-- | uploader/authorisation.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/uploader/authorisation.py b/uploader/authorisation.py index bd3454c..a283980 100644 --- a/uploader/authorisation.py +++ b/uploader/authorisation.py @@ -18,7 +18,7 @@ def require_login(function): """Check that the user is logged in and their token is valid.""" def __clear_session__(_no_token): session.clear_session_info() - flash("You need to be logged in.", "alert-danger big-alert") + flash("You need to be signed in.", "alert-danger big-alert") return redirect("/") return session.user_token().either( |