feat: implement activity logging for user actions and create activities table
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 44s

This commit is contained in:
Kaimbacher 2026-06-24 15:03:17 +02:00
commit 7e2f320b4f
12 changed files with 420 additions and 160 deletions

View file

@ -209,4 +209,13 @@ export interface Identifier {
// STATE_DISABLED = 0,
// STATE_VALIDATED = 1,
// STATE_2FA_AUTHENTICATED = 1,
// }
// }
// resources/js/Dataset.ts (oder wo User definiert ist)
export interface Activity {
id: number | string;
type: string;
description: string;
user: string | null;
created_at: string; // ISO-String, relativeTime() erwartet das
}