Privacy Policy DSGVO with sheets for categories, export-, check- and first erase-functions

This commit is contained in:
2026-08-05 20:34:38 +00:00
parent c9e6438222
commit fc82a28290
19 changed files with 1917 additions and 5 deletions
+2
View File
@@ -44,6 +44,7 @@ DEFAULT_CONFIG: dict[str, Any] = {
"automatic_retry_max_retries": 3,
"inventory_exclusion_rules": []
},
"privacy": {},
"meshcentral": {
"enabled": False,
"url": "",
@@ -111,5 +112,6 @@ def public_config() -> dict[str, Any]:
"general": dict(config.get("general", {})),
"authentication": dict(config.get("authentication", {})),
"software": dict(config.get("software", {})),
"privacy": dict(config.get("privacy", {})),
"meshcentral": mesh,
}