mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-15 01:01:20 +10:00
* #51 Adds settings page with showTitleDescriptionOnGamePanel * Removes console.log * Renames isHidden to system, adds missing system column on Game and fixes nitro plugin on fresh database * Implements a different way to handle the placeholder image * Removes system column on Game * Groups settings keys together * Removes unused i18n keys * fix: fix eslints and other small tweaks --------- Co-authored-by: Francois Ribemont <ribemont.francois@gmail.com>
23 lines
718 B
Plaintext
23 lines
718 B
Plaintext
enum ClientCapabilities {
|
|
PeerAPI @map("peerAPI") // other clients can use the HTTP API to P2P with this client
|
|
UserStatus @map("userStatus") // this client can report this user's status (playing, online, etc etc)
|
|
CloudSaves @map("cloudSaves") // ability to save to save slots
|
|
TrackPlaytime @map("trackPlaytime") // ability to track user playtime
|
|
}
|
|
|
|
// References a device
|
|
model Client {
|
|
id String @id @default(uuid())
|
|
userId String
|
|
user User @relation(fields: [userId], references: [id], onDelete: Cascade)
|
|
|
|
capabilities ClientCapabilities[]
|
|
|
|
name String
|
|
platform Platform
|
|
lastConnected DateTime
|
|
|
|
lastAccessedSaves SaveSlot[]
|
|
tokens APIToken[]
|
|
}
|