mirror of
https://github.com/stashapp/stash.git
synced 2025-12-15 21:03:22 +01:00
* Added exclude file from scan feature * Abort exclusion instead of panicking when pattern isn't valid * Added UI configuration for exclude patterns * * cosmetic fixes * changed behavior of exclude function to continue and ignore invalide regex patterns * added some more tests (windows networks and continue after regex error)
33 lines
513 B
GraphQL
33 lines
513 B
GraphQL
fragment ConfigGeneralData on ConfigGeneralResult {
|
|
stashes
|
|
databasePath
|
|
generatedPath
|
|
maxTranscodeSize
|
|
maxStreamingTranscodeSize
|
|
username
|
|
password
|
|
logFile
|
|
logOut
|
|
logLevel
|
|
logAccess
|
|
excludes
|
|
}
|
|
|
|
fragment ConfigInterfaceData on ConfigInterfaceResult {
|
|
soundOnPreview
|
|
wallShowTitle
|
|
maximumLoopDuration
|
|
autostartVideo
|
|
showStudioAsText
|
|
css
|
|
cssEnabled
|
|
}
|
|
|
|
fragment ConfigData on ConfigResult {
|
|
general {
|
|
...ConfigGeneralData
|
|
}
|
|
interface {
|
|
...ConfigInterfaceData
|
|
}
|
|
}
|