fix permissions

This commit is contained in:
Matthias Hochmeister
2026-03-24 17:54:36 +01:00
parent e6ddf67d95
commit f228dd67ba
11 changed files with 521 additions and 7 deletions

View File

@@ -67,3 +67,21 @@ export interface AssignableMember {
id: string;
name: string;
}
export interface IssueStatusmeldung {
id: number;
titel: string;
inhalt: string | null;
schwere: 'info' | 'warnung' | 'fehler';
aktiv: boolean;
erstellt_von: string | null;
created_at: string;
updated_at: string;
}
export interface IssueWidgetSummary {
offen: number;
in_bearbeitung: number;
erledigt: number;
abgelehnt: number;
}