diff --git a/GDPR.md b/GDPR.md index 9aec96c..97200a1 100644 --- a/GDPR.md +++ b/GDPR.md @@ -2,7 +2,7 @@ ## TL;DR -Analyst-bot collects text message information. It does not share collected data with any third-party and data is retained 30 days or until the bot is leaving the guild/server. +Analyst-bot collects text message information. It does not share collected data with any third-party and data is retained 90 days or until the bot is leaving the guild/server. ## Data collection @@ -27,7 +27,7 @@ Any data collected is only processed in order to produce a one-time report sent Analyst-bot stores the collected data in files that are accessible by the software and its administrator only. -Any collected data are retained maximum 30 days until deletion or when the bot is leaving a guild/server. +Any collected data are retained maximum 90 days until deletion or when the bot is leaving a guild/server. ## Data sharing diff --git a/src/logs/guild_logs.py b/src/logs/guild_logs.py index cbcefb7..95b03a9 100644 --- a/src/logs/guild_logs.py +++ b/src/logs/guild_logs.py @@ -30,8 +30,8 @@ CRYPT_KEY = os.getenv("CRYPT_KEY", "") # 5 minutes, assume 'fast' arg MIN_MODIFICATION_TIME = int(os.getenv("MAX_MODIFICATION_TIME", 5 * 60)) -# 30 days, remove log file -MAX_MODIFICATION_TIME = int(os.getenv("MAX_MODIFICATION_TIME", 30 * 24 * 60 * 60)) +# 90 days, remove log file +MAX_MODIFICATION_TIME = int(os.getenv("MAX_MODIFICATION_TIME", 90 * 24 * 60 * 60)) class Worker: def __init__( diff --git a/src/utils/gdpr.py b/src/utils/gdpr.py index 2860737..d3af2c9 100644 --- a/src/utils/gdpr.py +++ b/src/utils/gdpr.py @@ -13,7 +13,7 @@ arguments: TEXT = """ __**About Analyst-bot's data usage**__ **TL;DR** -Analyst-bot collects text message information. It does not share collected data with any third-party and data is retained 30 days or until the bot is leaving the guild/server. +Analyst-bot collects text message information. It does not share collected data with any third-party and data is retained 90 days or until the bot is leaving the guild/server. **Data collection** Analyst-bot collects a Discord guild/server's history when asked to. This includes: @@ -27,7 +27,7 @@ This does __not__ includes: Any data collected is only processed in order to produce a one-time report sent to the user immediately. No temporary data are retained. **Data storage and retain policy** Analyst-bot stores the collected data in files that are accessible by the software and its administrator only. -Any collected data are retained maximum 30 days until deletion or when the bot is leaving a guild/server. +Any collected data are retained maximum 90 days until deletion or when the bot is leaving a guild/server. **Data sharing** Analyst-bot does not share the data collected with any third-party. **Right to retract**