diff options
Diffstat (limited to 'system/admin')
-rw-r--r-- | system/admin/admin.go | 8 | ||||
-rw-r--r-- | system/admin/config/config.go | 4 | ||||
-rw-r--r-- | system/admin/handlers.go | 16 | ||||
-rw-r--r-- | system/admin/server.go | 8 |
4 files changed, 18 insertions, 18 deletions
diff --git a/system/admin/admin.go b/system/admin/admin.go index 78f607d..4d9df30 100644 --- a/system/admin/admin.go +++ b/system/admin/admin.go @@ -8,10 +8,10 @@ import ( "html/template" "net/http" - "github.com/bosssauce/ponzu/system/admin/user" - "github.com/bosssauce/ponzu/system/api/analytics" - "github.com/bosssauce/ponzu/system/db" - "github.com/bosssauce/ponzu/system/item" + "github.com/ponzu-cms/ponzu/system/admin/user" + "github.com/ponzu-cms/ponzu/system/api/analytics" + "github.com/ponzu-cms/ponzu/system/db" + "github.com/ponzu-cms/ponzu/system/item" ) var startAdminHTML = `<!doctype html> diff --git a/system/admin/config/config.go b/system/admin/config/config.go index ab17425..fdc1ae4 100644 --- a/system/admin/config/config.go +++ b/system/admin/config/config.go @@ -1,8 +1,8 @@ package config import ( - "github.com/bosssauce/ponzu/management/editor" - "github.com/bosssauce/ponzu/system/item" + "github.com/ponzu-cms/ponzu/management/editor" + "github.com/ponzu-cms/ponzu/system/item" ) // Config represents the confirgurable options of the system diff --git a/system/admin/handlers.go b/system/admin/handlers.go index 266535a..7d33f80 100644 --- a/system/admin/handlers.go +++ b/system/admin/handlers.go @@ -11,14 +11,14 @@ import ( "strings" "time" - "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/upload" - "github.com/bosssauce/ponzu/system/admin/user" - "github.com/bosssauce/ponzu/system/api" - "github.com/bosssauce/ponzu/system/db" - "github.com/bosssauce/ponzu/system/item" + "github.com/ponzu-cms/ponzu/management/editor" + "github.com/ponzu-cms/ponzu/management/manager" + "github.com/ponzu-cms/ponzu/system/admin/config" + "github.com/ponzu-cms/ponzu/system/admin/upload" + "github.com/ponzu-cms/ponzu/system/admin/user" + "github.com/ponzu-cms/ponzu/system/api" + "github.com/ponzu-cms/ponzu/system/db" + "github.com/ponzu-cms/ponzu/system/item" "github.com/gorilla/schema" emailer "github.com/nilslice/email" diff --git a/system/admin/server.go b/system/admin/server.go index bc6f4d6..b99ec37 100644 --- a/system/admin/server.go +++ b/system/admin/server.go @@ -6,9 +6,9 @@ import ( "os" "path/filepath" - "github.com/bosssauce/ponzu/system/admin/user" - "github.com/bosssauce/ponzu/system/api" - "github.com/bosssauce/ponzu/system/db" + "github.com/ponzu-cms/ponzu/system/admin/user" + "github.com/ponzu-cms/ponzu/system/api" + "github.com/ponzu-cms/ponzu/system/db" ) // Run adds Handlers to default http listener for Admin @@ -42,7 +42,7 @@ func Run() { log.Fatal("Couldn't find current directory for file server.") } - staticDir := filepath.Join(pwd, "cmd", "ponzu", "vendor", "github.com", "bosssauce", "ponzu", "system") + staticDir := filepath.Join(pwd, "cmd", "ponzu", "vendor", "github.com", "ponzu-cms", "ponzu", "system") http.Handle("/admin/static/", db.CacheControl(http.FileServer(restrict(http.Dir(staticDir))))) // API path needs to be registered within server package so that it is handled |