forked from NYANDEV/forgejo
Removed unused endpoint. (#18127)
This commit is contained in:
parent
8ce1b539b1
commit
211f0c32d2
2 changed files with 0 additions and 15 deletions
|
@ -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…
Reference in a new issue