mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-13 00:02:37 +10:00
17 lines
397 B
Plaintext
17 lines
397 B
Plaintext
model ApplicationSettings {
|
|
timestamp DateTime @id @default(now())
|
|
|
|
enabledAuthencationMechanisms AuthMec[]
|
|
metadataProviders String[]
|
|
|
|
saveSlotCountLimit Int @default(5)
|
|
saveSlotSizeLimit Float @default(10) // MB
|
|
saveSlotHistoryLimit Int @default(3)
|
|
}
|
|
|
|
enum Platform {
|
|
Windows @map("windows")
|
|
Linux @map("linux")
|
|
macOS @map("macos")
|
|
}
|