mirror of
https://github.com/stashapp/stash.git
synced 2026-05-03 06:59:44 -05:00
Python path setting (#2409)
* Add python package * Add python path backend config * Add python path to system settings page * Apply python path to script scrapers and plugins
This commit is contained in:
@@ -44,6 +44,7 @@ fragment ConfigGeneralData on ConfigGeneralResult {
|
||||
endpoint
|
||||
api_key
|
||||
}
|
||||
pythonPath
|
||||
}
|
||||
|
||||
fragment ConfigInterfaceData on ConfigInterfaceResult {
|
||||
|
||||
@@ -107,6 +107,8 @@ input ConfigGeneralInput {
|
||||
scraperCertCheck: Boolean @deprecated(reason: "use mutation ConfigureScraping(input: ConfigScrapingInput) instead")
|
||||
"""Stash-box instances used for tagging"""
|
||||
stashBoxes: [StashBoxInput!]
|
||||
"""Python path - resolved using path if unset"""
|
||||
pythonPath: String
|
||||
}
|
||||
|
||||
type ConfigGeneralResult {
|
||||
@@ -188,6 +190,8 @@ type ConfigGeneralResult {
|
||||
scraperCertCheck: Boolean! @deprecated(reason: "use ConfigResult.scraping instead")
|
||||
"""Stash-box instances used for tagging"""
|
||||
stashBoxes: [StashBox!]!
|
||||
"""Python path - resolved using path if unset"""
|
||||
pythonPath: String!
|
||||
}
|
||||
|
||||
input ConfigDisableDropdownCreateInput {
|
||||
|
||||
Reference in New Issue
Block a user