Redirect if user does not exist.

This commit is contained in:
charles-gauthereau
2024-11-13 19:45:22 +01:00
parent 12ff73c8e9
commit 9727eef581
6 changed files with 76 additions and 5 deletions
+13
View File
@@ -126,3 +126,16 @@ model Restauration {
databaseId String? @map("database_id")
database Database? @relation(fields: [databaseId], references: [id], onDelete: Cascade)
}
enum TypeStorage {
local
s3
}
model Settings {
id String @id @default(cuid())
storage TypeStorage @default(local)
s3AccessKeyId String?
s3SecretAccessKey String?
S3BucketName String?
}