mirror of
https://git.vectorsigma.ru/public/photoview.git
synced 2026-08-03 20:59:03 +00:00
* Remove thumbnail preferences. #1089 * Remove thumbnail preferences test. * Remove thumbnail preferences from backend. * Fix database.go * Update generated TS files. * Reorder the migrations.
16 lines
474 B
GraphQL
16 lines
474 B
GraphQL
"General information about the site"
|
|
type SiteInfo {
|
|
"Whether or not the initial setup wizard should be shown"
|
|
initialSetup: Boolean!
|
|
"Whether or not face detection is enabled and working"
|
|
faceDetectionEnabled: Boolean!
|
|
"How often automatic scans should be initiated in seconds"
|
|
periodicScanInterval: Int! @isAdmin
|
|
"How many max concurrent scanner jobs that should run at once"
|
|
concurrentWorkers: Int! @isAdmin
|
|
}
|
|
|
|
extend type Query {
|
|
siteInfo: SiteInfo!
|
|
}
|