diff options
author | Steve Manuel <nilslice@gmail.com> | 2017-01-11 18:33:37 -0800 |
---|---|---|
committer | Steve Manuel <nilslice@gmail.com> | 2017-01-11 18:33:37 -0800 |
commit | f65a0092d3c30880d8bf6a9e9f07573b36ee7816 (patch) | |
tree | 679a602d3b30a6c2effcf90366e79936a1dfad13 /system/addon | |
parent | 2e0b2d83f065d72fc39f89f592f98af421fce34a (diff) |
attempting to force item.Types to be populated before the db Init step
Diffstat (limited to 'system/addon')
-rw-r--r-- | system/addon/addon.go | 1 | ||||
-rw-r--r-- | system/addon/manager.go | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/system/addon/addon.go b/system/addon/addon.go index e4e8f70..51be9dc 100644 --- a/system/addon/addon.go +++ b/system/addon/addon.go @@ -8,6 +8,7 @@ import ( "github.com/ponzu-cms/ponzu/system/db" "github.com/ponzu-cms/ponzu/system/item" + "github.com/tidwall/sjson" ) diff --git a/system/addon/manager.go b/system/addon/manager.go index d73e228..d3c9673 100644 --- a/system/addon/manager.go +++ b/system/addon/manager.go @@ -7,8 +7,9 @@ import ( "html/template" "net/url" - "github.com/gorilla/schema" "github.com/ponzu-cms/ponzu/management/editor" + + "github.com/gorilla/schema" "github.com/tidwall/gjson" ) |