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
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 44s
This commit is contained in:
parent
6c75efbc28
commit
7e2f320b4f
12 changed files with 420 additions and 160 deletions
|
|
@ -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
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue