summaryrefslogtreecommitdiff
path: root/system/addon
diff options
context:
space:
mode:
authorSteve Manuel <nilslice@gmail.com>2017-01-11 18:33:37 -0800
committerSteve Manuel <nilslice@gmail.com>2017-01-11 18:33:37 -0800
commitf65a0092d3c30880d8bf6a9e9f07573b36ee7816 (patch)
tree679a602d3b30a6c2effcf90366e79936a1dfad13 /system/addon
parent2e0b2d83f065d72fc39f89f592f98af421fce34a (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.go1
-rw-r--r--system/addon/manager.go3
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"
)