mirror of
https://github.com/muety/wakapi.git
synced 2023-08-10 21:12:56 +03:00
fix: remove authentication requirement from diagnostics endpoint
This commit is contained in:
parent
ff7d595a86
commit
d778612242
@ -6,7 +6,6 @@ import (
|
|||||||
|
|
||||||
"github.com/gorilla/mux"
|
"github.com/gorilla/mux"
|
||||||
conf "github.com/muety/wakapi/config"
|
conf "github.com/muety/wakapi/config"
|
||||||
"github.com/muety/wakapi/middlewares"
|
|
||||||
"github.com/muety/wakapi/services"
|
"github.com/muety/wakapi/services"
|
||||||
"github.com/muety/wakapi/utils"
|
"github.com/muety/wakapi/utils"
|
||||||
|
|
||||||
@ -29,9 +28,6 @@ func NewDiagnosticsApiHandler(userService services.IUserService, diagnosticsServ
|
|||||||
|
|
||||||
func (h *DiagnosticsApiHandler) RegisterRoutes(router *mux.Router) {
|
func (h *DiagnosticsApiHandler) RegisterRoutes(router *mux.Router) {
|
||||||
r := router.PathPrefix("/plugins/errors").Subrouter()
|
r := router.PathPrefix("/plugins/errors").Subrouter()
|
||||||
r.Use(
|
|
||||||
middlewares.NewAuthenticateMiddleware(h.userSrvc).Handler,
|
|
||||||
)
|
|
||||||
r.Path("").Methods(http.MethodPost).HandlerFunc(h.Post)
|
r.Path("").Methods(http.MethodPost).HandlerFunc(h.Post)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user