diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2023-11-16 15:50:38 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2024-02-05 10:51:52 +0100 |
commit | 27056118d045ef7813f09ef94b16da32084de3be (patch) | |
tree | 10a79a07b909a711412be3b6b30db4818b0ec559 /example_project/settings.py | |
parent | 4659e3aa7fa2591bdec86c8eb4c12597e25c9864 (diff) | |
download | Ishtar-27056118d045ef7813f09ef94b16da32084de3be.tar.bz2 Ishtar-27056118d045ef7813f09ef94b16da32084de3be.zip |
🗃️ GDPR: add related models
Diffstat (limited to 'example_project/settings.py')
-rw-r--r-- | example_project/settings.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/example_project/settings.py b/example_project/settings.py index 8e9077aad..74638e353 100644 --- a/example_project/settings.py +++ b/example_project/settings.py @@ -292,6 +292,10 @@ JOINT = " | " # not managed cautiously the dir contening these scripts is not set by default ISHTAR_SCRIPT_DIR = "" +# GDPR +GDPR_LOGGING = True +GDPR_RETENTION_PERIOD = int(30.5 * 6) + 1 # ~ 6 month of logging + # TODO: clean... ISHTAR_FILE_PREFIX = "" ISHTAR_OPE_PREFIX = "OA" |