mirror of
https://github.com/stashapp/stash.git
synced 2025-12-18 04:44:37 +03:00
Improve client-side graphql scalar types (#4511)
* Add types to graphql scalars * Upgrade dependencies * Override UI config type * Remove all IUIConfig casts * Add tableColumns to IUIConfig * Add BoolMap type, set strictScalars * Add PluginConfigMap * Replace any with unknown * Add SavedObjectFilter and SavedUIOptions * Remove unused items from CriterionType
This commit is contained in:
@@ -735,11 +735,11 @@ func (i *Config) GetPluginsPath() string {
|
||||
return i.getString(PluginsPath)
|
||||
}
|
||||
|
||||
func (i *Config) GetAllPluginConfiguration() map[string]interface{} {
|
||||
func (i *Config) GetAllPluginConfiguration() map[string]map[string]interface{} {
|
||||
i.RLock()
|
||||
defer i.RUnlock()
|
||||
|
||||
ret := make(map[string]interface{})
|
||||
ret := make(map[string]map[string]interface{})
|
||||
|
||||
sub := i.viper(PluginsSetting).GetStringMap(PluginsSetting)
|
||||
if sub == nil {
|
||||
|
||||
Reference in New Issue
Block a user