feat: separate library and metadata pages, notification acls

This commit is contained in:
DecDuck
2025-05-15 14:55:05 +10:00
parent 086664adfd
commit 1dba112bce
13 changed files with 209 additions and 107 deletions

View File

@@ -0,0 +1,2 @@
-- AlterTable
ALTER TABLE "Notification" ADD COLUMN "acls" TEXT[];

View File

@@ -27,7 +27,8 @@ model Notification {
nonce String? @unique
userId String
user User @relation(fields: [userId], references: [id])
user User @relation(fields: [userId], references: [id])
acls String[]
created DateTime @default(now())
title String