Skip to content

Commit

Permalink
fix(ui): Add users route to extension_ui.go
Browse files Browse the repository at this point in the history
Add new ui route "/user" to ui router

Signed-off-by: Raul-Cristian Kele <[email protected]>
  • Loading branch information
raulkele committed Dec 17, 2023
1 parent c2196e3 commit f967f71
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pkg/extensions/extension_ui.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,8 @@ func SetupUIRoutes(conf *config.Config, router *mux.Router,
Handler(addUISecurityHeaders(uih))
router.PathPrefix("/image").Methods(allowedMethods...).
Handler(addUISecurityHeaders(uih))
router.PathPrefix("/user").Methods(allowedMethods...).
Handler(addUISecurityHeaders(uih))
router.PathPrefix("/").Methods(allowedMethods...).
Handler(addUISecurityHeaders(http.FileServer(http.FS(fsub))))

Expand Down

0 comments on commit f967f71

Please sign in to comment.