Data Protection
Data handling practices, GDPR compliance, and privacy controls.
Data Classification
| Classification | Examples | Protection |
|---|---|---|
| Critical | Passwords, JWT secrets | Encrypted, never logged |
| Sensitive | PII, email, phone | Encrypted at rest, access controlled |
| Internal | Time logs, projects | Tenant-isolated |
| Public | Organization name | No restrictions |
GDPR Compliance
Data Subject Rights
| Right | Implementation |
|---|---|
| Right to Access | Export user data via API |
| Right to Rectification | Edit profile endpoints |
| Right to Erasure | Account deletion with cascade |
| Right to Portability | Data export in JSON/CSV |
| Right to Restriction | Account deactivation |
Data Minimization
- Collect only necessary information
- Default to Optional for non-critical fields
- Configurable screenshot retention periods
- Auto-cleanup of expired data
Encryption
At Rest
| Data | Method |
|---|---|
| Passwords | scrypt (default) with transparent bcrypt fallback for legacy hashes |
| Database | TDE (Transparent Data Encryption) |
| File storage | S3 server-side encryption |
提示
Passwords are progressively migrated from bcrypt to scrypt on login. See Password Security for details.