Browse Source

v0.3.0-unstable15

Yann Stepienik 2 years ago
parent
commit
a932933550
2 changed files with 7 additions and 3 deletions
  1. 1 1
      package.json
  2. 6 2
      src/proxy/routerGen.go

+ 1 - 1
package.json

@@ -1,6 +1,6 @@
 {
   "name": "cosmos-server",
-  "version": "0.3.0-unstable14",
+  "version": "0.3.0-unstable15",
   "description": "",
   "main": "test-server.js",
   "bugs": {

+ 6 - 2
src/proxy/routerGen.go

@@ -39,9 +39,13 @@ func tokenMiddleware(enabled bool, adminOnly bool) func(next http.Handler) http.
 			r.Header.Set("x-cosmos-token", "1234567890")
 
 			if enabled && adminOnly {
-				utils.AdminOnlyWithRedirect(w, r)
+				if errT := utils.AdminOnlyWithRedirect(w, r); errT != nil {
+					return
+				}
 			} else if enabled {
-				utils.LoggedInOnlyWithRedirect(w, r)
+				if errT := utils.LoggedInOnlyWithRedirect(w, r); errT != nil {
+					return
+				}
 			}
 
 			next.ServeHTTP(w, r)