rework from modal to page

This commit is contained in:
Matthias Hochmeister
2026-03-25 10:23:28 +01:00
parent 4ad260ce66
commit feb39d234f
14 changed files with 698 additions and 280 deletions

View File

@@ -38,6 +38,16 @@ export interface IssueComment {
created_at: string;
}
export interface IssueHistorie {
id: number;
issue_id: number;
aktion: string;
details: Record<string, unknown> | null;
erstellt_von: string | null;
erstellt_von_name: string | null;
erstellt_am: string;
}
export interface CreateIssuePayload {
titel: string;
beschreibung?: string;