feat(mixed data source queries): lots of minor polish to new mixed data source and all the changes it has required, #436

This commit is contained in:
Torkel Ödegaard
2015-08-17 17:07:33 +02:00
parent 56d5b0b12a
commit 6ee0f2c6a7
11 changed files with 47 additions and 30 deletions

View File

@ -115,7 +115,7 @@ func GetDataSourcePlugins(c *middleware.Context) {
dsList := make(map[string]interface{})
for key, value := range plugins.DataSources {
if value.(map[string]interface{})["hide"] == nil {
if value.(map[string]interface{})["builtIn"] == nil {
dsList[key] = value
}
}