adjustible archive formats + finalized settings page

This commit is contained in:
daniel31x13
2023-10-19 00:00:23 -04:00
parent 19467f243f
commit ca3ce7e3de
9 changed files with 189 additions and 85 deletions
@@ -0,0 +1,4 @@
-- AlterTable
ALTER TABLE "User" ADD COLUMN "archiveAsPDF" BOOLEAN NOT NULL DEFAULT true,
ADD COLUMN "archiveAsScreenshot" BOOLEAN NOT NULL DEFAULT true,
ADD COLUMN "archiveAsWaybackMachine" BOOLEAN NOT NULL DEFAULT false;
+4
View File
@@ -54,6 +54,10 @@ model User {
pinnedLinks Link[]
archiveAsScreenshot Boolean @default(true)
archiveAsPDF Boolean @default(true)
archiveAsWaybackMachine Boolean @default(false)
collectionsJoined UsersAndCollections[]
isPrivate Boolean @default(false)
whitelistedUsers WhitelistedUser[]