add new storage modal and validation for storage creation

This commit is contained in:
2026-05-29 17:33:17 +02:00
parent b0731b22db
commit 8c4f194164
6 changed files with 197 additions and 26 deletions
+13 -1
View File
@@ -27,4 +27,16 @@ export interface Storage {
created_at: string;
updated_at: string;
uuid: string;
}
}
export interface NewStorage {
name: string;
description: string | null;
}
export interface AlertInterface {
isAlert: boolean;
type: "success" | "warning" | "danger" | "neutral" | "primary";
header: string;
text: string;
}