1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-15 23:17:19 +00:00

Removed unused endpoint. (#18127)

This commit is contained in:
KN4CK3R
2021-12-29 23:57:30 +01:00
committed by GitHub
parent 8ce1b539b1
commit 211f0c32d2
2 changed files with 0 additions and 15 deletions

View File

@@ -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())
}