diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2023-04-04 12:19:52 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2023-04-04 12:19:52 +0200 |
commit | ef2b079d276a2e485383ce0e1a187d882ae5c1dc (patch) | |
tree | 86520f0d7c926f256aab6504900c6256409f9f5f /example_project | |
parent | 0dac9c341be56b382fb6d5b918997aa2f41995ad (diff) | |
download | Ishtar-ef2b079d276a2e485383ce0e1a187d882ae5c1dc.tar.bz2 Ishtar-ef2b079d276a2e485383ce0e1a187d882ae5c1dc.zip |
Manage expiration of passwords
Diffstat (limited to 'example_project')
-rw-r--r-- | example_project/settings.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/example_project/settings.py b/example_project/settings.py index 0aafbdf90..934582b9b 100644 --- a/example_project/settings.py +++ b/example_project/settings.py @@ -276,6 +276,7 @@ JOINT = " | " # not managed cautiously the dir contening these scripts is not set by default ISHTAR_SCRIPT_DIR = "" +# TODO: clean... ISHTAR_FILE_PREFIX = "" ISHTAR_OPE_PREFIX = "OA" ISHTAR_DEF_OPE_PREFIX = "OP" @@ -289,6 +290,8 @@ ISHTAR_PERIODS = {} ISHTAR_PERMIT_TYPES = {} ISHTAR_DOC_TYPES = {"undefined": "Undefined"} +# number of days for password expiration: None for no expiration +ISHTAR_PASSWORD_EXPIRATION_DAYS = None ISHTAR_SEARCH_LANGUAGE = "french" ISHTAR_SECURE = True ISHTAR_SECURE_OPTIONS = False |