diff options
author | Frederick Muriuki Muriithi | 2025-03-14 10:14:47 -0500 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2025-03-14 10:14:47 -0500 |
commit | bb6a77dfcb553fcabfff8a3337a569f9e30b6f16 (patch) | |
tree | 7dcb9511e7c4bf884d39b79889c080c48387bbcb /gn_auth/settings.py | |
parent | b5168265af4a80733efe2f8cf5d61639de00a326 (diff) | |
download | gn-auth-bb6a77dfcb553fcabfff8a3337a569f9e30b6f16.tar.gz |
Move expiry of auth-based emails into a config variable.
To ease setting up of value without changing code, move the value out
into a configuration variable.
Diffstat (limited to 'gn_auth/settings.py')
-rw-r--r-- | gn_auth/settings.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gn_auth/settings.py b/gn_auth/settings.py index d561fa9..d59e997 100644 --- a/gn_auth/settings.py +++ b/gn_auth/settings.py @@ -45,3 +45,7 @@ SMTP_TIMEOUT = 200 # seconds SMTP_USER = "no-reply@genenetwork.org" SMTP_PASSWORD = "asecrettoken" EMAIL_ADDRESS = "no-reply@uthsc.edu" + + +## Variable settings for various emails going out to users +AUTH_EMAILS_EXPIRY_MINUTES = 15 |