summaryrefslogtreecommitdiff
path: root/system/admin
diff options
context:
space:
mode:
Diffstat (limited to 'system/admin')
-rw-r--r--system/admin/admin.go4
-rw-r--r--system/admin/cache.go2
-rw-r--r--system/admin/config/config.go4
-rw-r--r--system/admin/handlers.go12
-rw-r--r--system/admin/server.go2
5 files changed, 12 insertions, 12 deletions
diff --git a/system/admin/admin.go b/system/admin/admin.go
index e8c4287..b375eb6 100644
--- a/system/admin/admin.go
+++ b/system/admin/admin.go
@@ -6,8 +6,8 @@ import (
"bytes"
"html/template"
- "github.com/nilslice/cms/content"
- "github.com/nilslice/cms/system/db"
+ "github.com/bosssauce/ponzu/content"
+ "github.com/bosssauce/ponzu/system/db"
)
var startAdminHTML = `<!doctype html>
diff --git a/system/admin/cache.go b/system/admin/cache.go
index 9962249..0de45af 100644
--- a/system/admin/cache.go
+++ b/system/admin/cache.go
@@ -5,7 +5,7 @@ import (
"net/http"
"strings"
- "github.com/nilslice/cms/system/db"
+ "github.com/bosssauce/ponzu/system/db"
)
// CacheControl sets the default cache policy on static asset responses
diff --git a/system/admin/config/config.go b/system/admin/config/config.go
index cd27054..c5ef1cd 100644
--- a/system/admin/config/config.go
+++ b/system/admin/config/config.go
@@ -1,8 +1,8 @@
package config
import (
- "github.com/nilslice/cms/content"
- "github.com/nilslice/cms/management/editor"
+ "github.com/bosssauce/ponzu/content"
+ "github.com/bosssauce/ponzu/management/editor"
)
//Config represents the confirgurable options of the system
diff --git a/system/admin/handlers.go b/system/admin/handlers.go
index 1e8ba4f..623bcea 100644
--- a/system/admin/handlers.go
+++ b/system/admin/handlers.go
@@ -12,12 +12,12 @@ import (
"strings"
"time"
- "github.com/nilslice/cms/content"
- "github.com/nilslice/cms/management/editor"
- "github.com/nilslice/cms/management/manager"
- "github.com/nilslice/cms/system/admin/config"
- "github.com/nilslice/cms/system/admin/user"
- "github.com/nilslice/cms/system/db"
+ "github.com/bosssauce/ponzu/content"
+ "github.com/bosssauce/ponzu/management/editor"
+ "github.com/bosssauce/ponzu/management/manager"
+ "github.com/bosssauce/ponzu/system/admin/config"
+ "github.com/bosssauce/ponzu/system/admin/user"
+ "github.com/bosssauce/ponzu/system/db"
"github.com/nilslice/jwt"
)
diff --git a/system/admin/server.go b/system/admin/server.go
index 2c84479..312a3de 100644
--- a/system/admin/server.go
+++ b/system/admin/server.go
@@ -3,7 +3,7 @@ package admin
import (
"net/http"
- "github.com/nilslice/cms/system/admin/user"
+ "github.com/bosssauce/ponzu/system/admin/user"
)
// Run adds Handlers to default http listener for Admin