Parcourir la source

fix(mod): redirect dashboard to /dashboard

Brandon Philips il y a 12 ans
Parent
commit
64e49726cd
1 fichiers modifiés avec 8 ajouts et 0 suppressions
  1. 8 0
      mod/mod.go

+ 8 - 0
mod/mod.go

@@ -3,6 +3,7 @@ package mod
 
 import (
 	"net/http"
+	"path"
 
 	"github.com/coreos/etcd/mod/dashboard"
 	"github.com/gorilla/mux"
@@ -10,9 +11,16 @@ import (
 
 var ServeMux *http.Handler
 
+func addSlash(w http.ResponseWriter, req *http.Request) {
+	http.Redirect(w, req, path.Join("mod", req.URL.Path) + "/", 302)
+	return
+}
+
 func HttpHandler() (handler http.Handler) {
 	modMux := mux.NewRouter()
+	modMux.HandleFunc("/dashboard", addSlash)
 	modMux.PathPrefix("/dashboard/").
 		Handler(http.StripPrefix("/dashboard/", dashboard.HttpHandler()))
+
 	return modMux
 }