Erweiterte Features (2/2): Cleanup/DSGVO, Webhooks, REST-API, Backup, CI, Docker
- Auto-Cleanup/DSGVO: cron_cleanup.php (token-geschützt) löscht abgelaufene Voucher, Audit-Log, Login-Versuche und Reset-Tokens nach konfigurierbaren Fristen - Webhooks: includes/Notifier.php (Slack/Teams/generisch), Auslösung bei Voucher-Erstellung (Web + API) - REST-API: includes/ApiKey.php (SHA-256, Präfix-Lookup), api/bootstrap.php, api/vouchers.php (GET/POST), api/sites.php; admin/api_keys.php zur Verwaltung - Config-Backup/Restore: admin/backup.php (JSON Export/Import, Cron-Token geschützt) - admin/integrations.php: Trusted-Proxy, Webhook, Cleanup-Fristen - CI: .github/workflows/ci.yml (php -l auf 7.4 & 8.2, lang-Validierung) - Docker: Dockerfile, docker-compose.yml (MariaDB), entrypoint (config aus ENV), .dockerignore - Nav + i18n (DE/EN) für alle neuen Admin-Seiten
This commit is contained in:
parent
eec28f77b8
commit
9463486225
18 changed files with 972 additions and 0 deletions
|
|
@ -8,7 +8,10 @@ return [
|
|||
'nav_templates' => 'Voucher-Profile',
|
||||
'nav_audit_log' => 'Audit-Log',
|
||||
'nav_settings' => 'Einstellungen',
|
||||
'nav_api_keys' => 'API-Schlüssel',
|
||||
'nav_security' => 'Sicherheit (2FA)',
|
||||
'nav_integrations' => 'Integration & Wartung',
|
||||
'nav_backup' => 'Backup & Restore',
|
||||
'nav_update' => 'System-Update',
|
||||
'nav_back' => 'Zurück zur Startseite',
|
||||
'nav_administration'=> 'Administration',
|
||||
|
|
|
|||
|
|
@ -8,7 +8,10 @@ return [
|
|||
'nav_templates' => 'Voucher Profiles',
|
||||
'nav_audit_log' => 'Audit Log',
|
||||
'nav_settings' => 'Settings',
|
||||
'nav_api_keys' => 'API Keys',
|
||||
'nav_security' => 'Security (2FA)',
|
||||
'nav_integrations' => 'Integration & Maintenance',
|
||||
'nav_backup' => 'Backup & Restore',
|
||||
'nav_update' => 'System Update',
|
||||
'nav_back' => 'Back to Home',
|
||||
'nav_administration'=> 'Administration',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue