diff --git a/api/handlers/v1/handler.go b/api/handlers/v1/handler.go index 6db17fe..8904920 100644 --- a/api/handlers/v1/handler.go +++ b/api/handlers/v1/handler.go @@ -41,9 +41,9 @@ func (h *Handler) Register(v1 *echo.Group) { auth.POST("/login", h.AuthLogin) auth.POST("/register", h.AuthRegister) auth.Use(echojwt.WithConfig(jwtConfig)) - auth.POST("/scopes/add", h.AddScope) - //auth.POST("/refresh", h.RefreshJwtToken) - + auth.POST("/scopes/add", h.AddScopes) + auth.POST("/scopes/remove", h.RemoveScopes) + demo := v1.Group("/demo") demo.GET("/hello", h.DemoHello) demo.GET("/hello/:who", h.HelloWho)