From fd9ad05159c84ba804b126d2a959963d82578b22 Mon Sep 17 00:00:00 2001 From: 6543 <6543@obermui.de> Date: Sun, 29 Dec 2019 03:25:00 +0100 Subject: [PATCH] remove since it is there for 3years --- routers/routes/routes.go | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/routers/routes/routes.go b/routers/routes/routes.go index c434c42263..c8351f312b 100644 --- a/routers/routes/routes.go +++ b/routers/routes/routes.go @@ -385,24 +385,6 @@ func RegisterRoutes(m *macaron.Macaron) { m.Post("/keys/delete", userSetting.DeleteKey) m.Get("/organization", userSetting.Organization) m.Get("/repos", userSetting.Repos) - - // redirects from old settings urls to new ones - // TODO: can be removed on next major version - m.Get("/avatar", func(ctx *context.Context) { - ctx.Redirect(setting.AppSubURL+"/user/settings", http.StatusMovedPermanently) - }) - m.Get("/email", func(ctx *context.Context) { - ctx.Redirect(setting.AppSubURL+"/user/settings/account", http.StatusMovedPermanently) - }) - m.Get("/delete", func(ctx *context.Context) { - ctx.Redirect(setting.AppSubURL+"/user/settings/account", http.StatusMovedPermanently) - }) - m.Get("/openid", func(ctx *context.Context) { - ctx.Redirect(setting.AppSubURL+"/user/settings/security", http.StatusMovedPermanently) - }) - m.Get("/account_link", func(ctx *context.Context) { - ctx.Redirect(setting.AppSubURL+"/user/settings/security", http.StatusMovedPermanently) - }) }, reqSignIn, func(ctx *context.Context) { ctx.Data["PageIsUserSettings"] = true ctx.Data["AllThemes"] = setting.UI.Themes