mirror of
https://github.com/stashapp/stash.git
synced 2025-12-18 21:04:37 +03:00
* Change scrapers overview into collapsible per type * Move scraping configuration to (renamed) scrapers tab Rename the Scrapers tab to Scraping and move the scraping configuration to this tab.
87 lines
1.3 KiB
GraphQL
87 lines
1.3 KiB
GraphQL
fragment ConfigGeneralData on ConfigGeneralResult {
|
|
stashes {
|
|
path
|
|
excludeVideo
|
|
excludeImage
|
|
}
|
|
databasePath
|
|
generatedPath
|
|
cachePath
|
|
calculateMD5
|
|
videoFileNamingAlgorithm
|
|
parallelTasks
|
|
previewAudio
|
|
previewSegments
|
|
previewSegmentDuration
|
|
previewExcludeStart
|
|
previewExcludeEnd
|
|
previewPreset
|
|
maxTranscodeSize
|
|
maxStreamingTranscodeSize
|
|
apiKey
|
|
username
|
|
password
|
|
maxSessionAge
|
|
logFile
|
|
logOut
|
|
logLevel
|
|
logAccess
|
|
createGalleriesFromFolders
|
|
videoExtensions
|
|
imageExtensions
|
|
galleryExtensions
|
|
excludes
|
|
imageExcludes
|
|
scraperUserAgent
|
|
scraperCertCheck
|
|
scraperCDPPath
|
|
stashBoxes {
|
|
name
|
|
endpoint
|
|
api_key
|
|
}
|
|
}
|
|
|
|
fragment ConfigInterfaceData on ConfigInterfaceResult {
|
|
menuItems
|
|
soundOnPreview
|
|
wallShowTitle
|
|
wallPlayback
|
|
maximumLoopDuration
|
|
autostartVideo
|
|
showStudioAsText
|
|
css
|
|
cssEnabled
|
|
language
|
|
slideshowDelay
|
|
handyKey
|
|
}
|
|
|
|
fragment ConfigDLNAData on ConfigDLNAResult {
|
|
serverName
|
|
enabled
|
|
whitelistedIPs
|
|
interfaces
|
|
}
|
|
|
|
fragment ConfigScrapingData on ConfigScrapingResult {
|
|
scraperUserAgent
|
|
scraperCertCheck
|
|
scraperCDPPath
|
|
}
|
|
|
|
fragment ConfigData on ConfigResult {
|
|
general {
|
|
...ConfigGeneralData
|
|
}
|
|
interface {
|
|
...ConfigInterfaceData
|
|
}
|
|
dlna {
|
|
...ConfigDLNAData
|
|
}
|
|
scraping {
|
|
...ConfigScrapingData
|
|
}
|
|
}
|