30 to 90 days
This commit is contained in:
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
## TL;DR
|
## 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
|
## 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.
|
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
|
## Data sharing
|
||||||
|
|
||||||
|
|||||||
@@ -30,8 +30,8 @@ CRYPT_KEY = os.getenv("CRYPT_KEY", "")
|
|||||||
# 5 minutes, assume 'fast' arg
|
# 5 minutes, assume 'fast' arg
|
||||||
MIN_MODIFICATION_TIME = int(os.getenv("MAX_MODIFICATION_TIME", 5 * 60))
|
MIN_MODIFICATION_TIME = int(os.getenv("MAX_MODIFICATION_TIME", 5 * 60))
|
||||||
|
|
||||||
# 30 days, remove log file
|
# 90 days, remove log file
|
||||||
MAX_MODIFICATION_TIME = int(os.getenv("MAX_MODIFICATION_TIME", 30 * 24 * 60 * 60))
|
MAX_MODIFICATION_TIME = int(os.getenv("MAX_MODIFICATION_TIME", 90 * 24 * 60 * 60))
|
||||||
|
|
||||||
class Worker:
|
class Worker:
|
||||||
def __init__(
|
def __init__(
|
||||||
|
|||||||
+2
-2
@@ -13,7 +13,7 @@ arguments:
|
|||||||
TEXT = """
|
TEXT = """
|
||||||
__**About Analyst-bot's data usage**__
|
__**About Analyst-bot's data usage**__
|
||||||
**TL;DR**
|
**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**
|
**Data collection**
|
||||||
Analyst-bot collects a Discord guild/server's history when asked to.
|
Analyst-bot collects a Discord guild/server's history when asked to.
|
||||||
This includes:
|
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.
|
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**
|
**Data storage and retain policy**
|
||||||
Analyst-bot stores the collected data in files that are accessible by the software and its administrator only.
|
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**
|
**Data sharing**
|
||||||
Analyst-bot does not share the data collected with any third-party.
|
Analyst-bot does not share the data collected with any third-party.
|
||||||
**Right to retract**
|
**Right to retract**
|
||||||
|
|||||||
Reference in New Issue
Block a user