client review by episode filter added
Deploy / deploy (push) Failing after 47s

This commit is contained in:
twotalesanimation
2026-06-24 11:20:33 +02:00
parent 1a5a56cf4c
commit bb7368ab06
7 changed files with 388 additions and 16 deletions
+11 -10
View File
@@ -527,16 +527,17 @@ model Task {
/// Secure tokenized review link for clients
model ReviewSession {
id String @id @default(cuid())
projectId String
token String @unique @default(cuid())
label String?
email String?
passwordHash String?
expiresAt DateTime
isActive Boolean @default(true)
accessCount Int @default(0)
createdAt DateTime @default(now())
id String @id @default(cuid())
projectId String
token String @unique @default(cuid())
label String?
email String?
passwordHash String?
expiresAt DateTime
isActive Boolean @default(true)
accessCount Int @default(0)
allowedEpisodes String[] @default([])
createdAt DateTime @default(now())
project Project @relation(fields: [projectId], references: [id], onDelete: Cascade)