1
0
Fork 0
forked from forgejo/forgejo

Finish new reset password, etc.

This commit is contained in:
Unknwon 2014-08-09 21:02:00 -07:00
parent 5605af973b
commit 7af7584d25
16 changed files with 625 additions and 602 deletions

View file

@ -5,6 +5,7 @@
package middleware
import (
"fmt"
"net/url"
"strings"
@ -43,6 +44,7 @@ func Toggle(options *ToggleOptions) macaron.Handler {
}
if options.SignInRequire {
fmt.Println(ctx.User.IsActive, setting.Service.RegisterEmailConfirm)
if !ctx.IsSigned {
// Ignore watch repository operation.
if strings.HasSuffix(ctx.Req.RequestURI, "watch") {
@ -52,7 +54,7 @@ func Toggle(options *ToggleOptions) macaron.Handler {
ctx.Redirect("/user/login")
return
} else if !ctx.User.IsActive && setting.Service.RegisterEmailConfirm {
// ctx.Data["Title"] = "Activate Your Account"
ctx.Data["Title"] = ctx.Tr("auth.active_your_account")
ctx.HTML(200, "user/activate")
return
}