Removed unused endpoint. (#18127)

forgejo
KN4CK3R 3 years ago committed by GitHub
parent 8ce1b539b1
commit 211f0c32d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -769,17 +769,3 @@ func ShowGPGKeys(ctx *context.Context, uid int64) {
writer.Close()
ctx.PlainTextBytes(http.StatusOK, buf.Bytes())
}
// Email2User show user page via email
func Email2User(ctx *context.Context) {
u, err := user_model.GetUserByEmail(ctx.FormString("email"))
if err != nil {
if user_model.IsErrUserNotExist(err) {
ctx.NotFound("GetUserByEmail", err)
} else {
ctx.ServerError("GetUserByEmail", err)
}
return
}
ctx.Redirect(u.HomeLink())
}

@ -376,7 +376,6 @@ func RegisterRoutes(m *web.Route) {
m.Post("/activate", user.ActivatePost, reqSignIn)
m.Any("/activate_email", user.ActivateEmail)
m.Get("/avatar/{username}/{size}", user.AvatarByUserName)
m.Get("/email2user", user.Email2User)
m.Get("/recover_account", user.ResetPasswd)
m.Post("/recover_account", user.ResetPasswdPost)
m.Get("/forgot_password", user.ForgotPasswd)

Loading…
Cancel
Save