We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fcc1125 commit 674e7d5Copy full SHA for 674e7d5
routers/web/web.go
@@ -236,6 +236,10 @@ func RegisterRoutes(m *web.Route) {
236
if setting.Federation.Enabled {
237
m.Get("/.well-known/nodeinfo", NodeInfoLinks)
238
}
239
+ m.Get("/.well-known/change-password", func(w http.ResponseWriter, req *http.Request) {
240
+ http.Redirect(w, req, "/user/settings/account", http.StatusTemporaryRedirect)
241
+ })
242
+
243
m.Group("/explore", func() {
244
m.Get("", func(ctx *context.Context) {
245
ctx.Redirect(setting.AppSubURL + "/explore/repos")
0 commit comments