mirror of
https://github.com/stashapp/stash.git
synced 2025-12-06 08:26:00 +01:00
* Add assets for plugins * Move plugin javascript and css into separate endpoints * Allow loading external scripts * Add csp overrides * Only include enabled plugins * Move URLMap to utils * Use URLMap for assets * Add documentation
45 lines
454 B
GraphQL
45 lines
454 B
GraphQL
query Plugins {
|
|
plugins {
|
|
id
|
|
name
|
|
enabled
|
|
description
|
|
url
|
|
version
|
|
|
|
tasks {
|
|
name
|
|
description
|
|
}
|
|
|
|
hooks {
|
|
name
|
|
description
|
|
hooks
|
|
}
|
|
|
|
settings {
|
|
name
|
|
display_name
|
|
description
|
|
type
|
|
}
|
|
|
|
paths {
|
|
css
|
|
javascript
|
|
}
|
|
}
|
|
}
|
|
|
|
query PluginTasks {
|
|
pluginTasks {
|
|
name
|
|
description
|
|
plugin {
|
|
id
|
|
name
|
|
enabled
|
|
}
|
|
}
|
|
}
|