mirror of
https://github.com/stashapp/stash.git
synced 2025-12-18 04:44:37 +03:00
Scraper and plugin manager (#4242)
* Add package manager * Add SettingModal validate * Reverse modal button order * Add plugin package management * Refactor ClearableInput
This commit is contained in:
@@ -17,3 +17,15 @@ mutation ConfigurePlugin($plugin_id: ID!, $input: Map!) {
|
||||
mutation SetPluginsEnabled($enabledMap: BoolMap!) {
|
||||
setPluginsEnabled(enabledMap: $enabledMap)
|
||||
}
|
||||
|
||||
mutation InstallPluginPackages($packages: [PackageSpecInput!]!) {
|
||||
installPackages(type: Plugin, packages: $packages)
|
||||
}
|
||||
|
||||
mutation UpdatePluginPackages($packages: [PackageSpecInput!]!) {
|
||||
updatePackages(type: Plugin, packages: $packages)
|
||||
}
|
||||
|
||||
mutation UninstallPluginPackages($packages: [PackageSpecInput!]!) {
|
||||
uninstallPackages(type: Plugin, packages: $packages)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user