summaryrefslogtreecommitdiff
path: root/system/admin
diff options
context:
space:
mode:
authorSteve Manuel <nilslice@gmail.com>2017-01-13 14:57:09 -0800
committerSteve Manuel <nilslice@gmail.com>2017-01-13 14:57:09 -0800
commit1225c90c0d0a49f91c59e119ee3748efdb0b78db (patch)
treecf8c4d545b7235794a337d0aea48128a5bd71141 /system/admin
parent7aee4abfff1fdf588a897470da3413455d8d9f87 (diff)
updating config model and changing configCache to map[string]interface{} throughout codebase
Diffstat (limited to 'system/admin')
-rw-r--r--system/admin/config/config.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/admin/config/config.go b/system/admin/config/config.go
index c83eb32..5504830 100644
--- a/system/admin/config/config.go
+++ b/system/admin/config/config.go
@@ -16,7 +16,7 @@ type Config struct {
AdminEmail string `json:"admin_email"`
ClientSecret string `json:"client_secret"`
Etag string `json:"etag"`
- DisableCORS []string `json:"cors_disabled"`
+ DisableCORS []bool `json:"cors_disabled"`
CacheInvalidate []string `json:"cache"`
}