mirror of
https://github.com/stashapp/stash.git
synced 2025-12-07 17:02:38 +01:00
* refactored common code in recommendation row * Implement front page options in config * Allow customisation from front page * Rename recommendations to front page * Add generic UI settings * Support adding premade filters Co-authored-by: WithoutPants <53250216+WithoutPants@users.noreply.github.com>
45 lines
936 B
GraphQL
45 lines
936 B
GraphQL
mutation Setup($input: SetupInput!) {
|
|
setup(input: $input)
|
|
}
|
|
|
|
mutation Migrate($input: MigrateInput!) {
|
|
migrate(input: $input)
|
|
}
|
|
|
|
mutation ConfigureGeneral($input: ConfigGeneralInput!) {
|
|
configureGeneral(input: $input) {
|
|
...ConfigGeneralData
|
|
}
|
|
}
|
|
|
|
mutation ConfigureInterface($input: ConfigInterfaceInput!) {
|
|
configureInterface(input: $input) {
|
|
...ConfigInterfaceData
|
|
}
|
|
}
|
|
|
|
mutation ConfigureDLNA($input: ConfigDLNAInput!) {
|
|
configureDLNA(input: $input) {
|
|
...ConfigDLNAData
|
|
}
|
|
}
|
|
|
|
mutation ConfigureScraping($input: ConfigScrapingInput!) {
|
|
configureScraping(input: $input) {
|
|
...ConfigScrapingData
|
|
}
|
|
}
|
|
|
|
mutation ConfigureDefaults($input: ConfigDefaultSettingsInput!) {
|
|
configureDefaults(input: $input) {
|
|
...ConfigDefaultSettingsData
|
|
}
|
|
}
|
|
|
|
mutation ConfigureUI($input: Map!) {
|
|
configureUI(input: $input)
|
|
}
|
|
|
|
mutation GenerateAPIKey($input: GenerateAPIKeyInput!) {
|
|
generateAPIKey(input: $input)
|
|
}
|