summaryrefslogtreecommitdiff
path: root/system/api
diff options
context:
space:
mode:
Diffstat (limited to 'system/api')
-rw-r--r--system/api/analytics/init.go2
-rw-r--r--system/api/cors.go2
-rw-r--r--system/api/create.go6
-rw-r--r--system/api/delete.go4
-rw-r--r--system/api/gzip.go2
-rw-r--r--system/api/handlers.go4
-rw-r--r--system/api/hide.go2
-rw-r--r--system/api/omit.go2
-rw-r--r--system/api/push.go2
-rw-r--r--system/api/record.go2
-rw-r--r--system/api/search.go6
-rw-r--r--system/api/update.go6
12 files changed, 20 insertions, 20 deletions
diff --git a/system/api/analytics/init.go b/system/api/analytics/init.go
index 0e9e90e..50981b4 100644
--- a/system/api/analytics/init.go
+++ b/system/api/analytics/init.go
@@ -13,7 +13,7 @@ import (
"time"
"github.com/boltdb/bolt"
- "github.com/ponzu-cms/ponzu/system/cfg"
+ "github.com/haturatu/ponzu/system/cfg"
)
type apiRequest struct {
diff --git a/system/api/cors.go b/system/api/cors.go
index 249a378..c983e9f 100644
--- a/system/api/cors.go
+++ b/system/api/cors.go
@@ -5,7 +5,7 @@ import (
"net/http"
"net/url"
- "github.com/ponzu-cms/ponzu/system/db"
+ "github.com/haturatu/ponzu/system/db"
)
// sendPreflight is used to respond to a cross-origin "OPTIONS" request
diff --git a/system/api/create.go b/system/api/create.go
index 9012fc3..af98a01 100644
--- a/system/api/create.go
+++ b/system/api/create.go
@@ -9,9 +9,9 @@ import (
"strings"
"time"
- "github.com/ponzu-cms/ponzu/system/admin/upload"
- "github.com/ponzu-cms/ponzu/system/db"
- "github.com/ponzu-cms/ponzu/system/item"
+ "github.com/haturatu/ponzu/system/admin/upload"
+ "github.com/haturatu/ponzu/system/db"
+ "github.com/haturatu/ponzu/system/item"
"github.com/gorilla/schema"
)
diff --git a/system/api/delete.go b/system/api/delete.go
index 37328e4..2778211 100644
--- a/system/api/delete.go
+++ b/system/api/delete.go
@@ -5,8 +5,8 @@ import (
"log"
"net/http"
- "github.com/ponzu-cms/ponzu/system/db"
- "github.com/ponzu-cms/ponzu/system/item"
+ "github.com/haturatu/ponzu/system/db"
+ "github.com/haturatu/ponzu/system/item"
)
// Deleteable accepts or rejects update POST requests to endpoints such as:
diff --git a/system/api/gzip.go b/system/api/gzip.go
index 02f1535..f7bf65e 100644
--- a/system/api/gzip.go
+++ b/system/api/gzip.go
@@ -5,7 +5,7 @@ import (
"net/http"
"strings"
- "github.com/ponzu-cms/ponzu/system/db"
+ "github.com/haturatu/ponzu/system/db"
)
// Gzip wraps a HandlerFunc to compress responses when possible
diff --git a/system/api/handlers.go b/system/api/handlers.go
index 99db799..ce8dade 100644
--- a/system/api/handlers.go
+++ b/system/api/handlers.go
@@ -8,8 +8,8 @@ import (
"strconv"
"strings"
- "github.com/ponzu-cms/ponzu/system/db"
- "github.com/ponzu-cms/ponzu/system/item"
+ "github.com/haturatu/ponzu/system/db"
+ "github.com/haturatu/ponzu/system/item"
)
// ErrNoAuth should be used to report failed auth requests
diff --git a/system/api/hide.go b/system/api/hide.go
index 2f57d3d..68d2341 100644
--- a/system/api/hide.go
+++ b/system/api/hide.go
@@ -3,7 +3,7 @@ package api
import (
"net/http"
- "github.com/ponzu-cms/ponzu/system/item"
+ "github.com/haturatu/ponzu/system/item"
)
func hide(res http.ResponseWriter, req *http.Request, it interface{}) bool {
diff --git a/system/api/omit.go b/system/api/omit.go
index e8960bb..2deb0a3 100644
--- a/system/api/omit.go
+++ b/system/api/omit.go
@@ -5,7 +5,7 @@ import (
"log"
"net/http"
- "github.com/ponzu-cms/ponzu/system/item"
+ "github.com/haturatu/ponzu/system/item"
"github.com/tidwall/gjson"
"github.com/tidwall/sjson"
diff --git a/system/api/push.go b/system/api/push.go
index 0469548..fdce3e2 100644
--- a/system/api/push.go
+++ b/system/api/push.go
@@ -5,7 +5,7 @@ import (
"net/http"
"strings"
- "github.com/ponzu-cms/ponzu/system/item"
+ "github.com/haturatu/ponzu/system/item"
"github.com/tidwall/gjson"
)
diff --git a/system/api/record.go b/system/api/record.go
index 93d4aaf..623c506 100644
--- a/system/api/record.go
+++ b/system/api/record.go
@@ -3,7 +3,7 @@ package api
import (
"net/http"
- "github.com/ponzu-cms/ponzu/system/api/analytics"
+ "github.com/haturatu/ponzu/system/api/analytics"
)
// Record wraps a HandlerFunc to record API requests for analytical purposes
diff --git a/system/api/search.go b/system/api/search.go
index 039f0bd..fc9e983 100644
--- a/system/api/search.go
+++ b/system/api/search.go
@@ -7,9 +7,9 @@ import (
"net/url"
"strconv"
- "github.com/ponzu-cms/ponzu/system/db"
- "github.com/ponzu-cms/ponzu/system/item"
- "github.com/ponzu-cms/ponzu/system/search"
+ "github.com/haturatu/ponzu/system/db"
+ "github.com/haturatu/ponzu/system/item"
+ "github.com/haturatu/ponzu/system/search"
)
func searchContentHandler(res http.ResponseWriter, req *http.Request) {
diff --git a/system/api/update.go b/system/api/update.go
index 91fbd8e..0a058b9 100644
--- a/system/api/update.go
+++ b/system/api/update.go
@@ -9,9 +9,9 @@ import (
"strings"
"time"
- "github.com/ponzu-cms/ponzu/system/admin/upload"
- "github.com/ponzu-cms/ponzu/system/db"
- "github.com/ponzu-cms/ponzu/system/item"
+ "github.com/haturatu/ponzu/system/admin/upload"
+ "github.com/haturatu/ponzu/system/db"
+ "github.com/haturatu/ponzu/system/item"
"github.com/gorilla/schema"
)