feat(plugins): progress on plugin details page, # 4275

This commit is contained in:
Torkel Ödegaard
2016-03-07 14:31:17 +01:00
parent 1ff428087e
commit 135679096b
14 changed files with 107 additions and 37 deletions
+5 -4
View File
@@ -42,10 +42,11 @@ func GetPluginSettingById(c *middleware.Context) Response {
return ApiError(404, "Plugin not found, no installed plugin with that id", nil)
} else {
dto := &dtos.PluginSetting{
Type: def.Type,
PluginId: def.Id,
Name: def.Name,
Info: &def.Info,
Type: def.Type,
PluginId: def.Id,
Name: def.Name,
Info: &def.Info,
Dependencies: &def.Dependencies,
}
if app, exists := plugins.Apps[pluginId]; exists {