forked from forgejo/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())
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue