fixed chat zustand bug

This commit is contained in:
PxlLoewe
2025-03-21 10:27:32 -07:00
parent 71aff2d66a
commit b7eb148ca6
17 changed files with 399 additions and 91 deletions

View File

@@ -0,0 +1,19 @@
enum GlobalColor {
PRIMARY
SECONDARY
INFO
SUCCESS
WARNING
ERROR
}
model Notam {
id Int @id @default(autoincrement())
color GlobalColor
message String
showUntil DateTime
isMainMsg Boolean
active Boolean
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
}