Batch updates
This commit is contained in:
parent
cb52f6d07d
commit
7356153ba3
8 changed files with 41 additions and 13 deletions
|
@ -5,6 +5,8 @@
|
|||
package middleware
|
||||
|
||||
import (
|
||||
"net/url"
|
||||
|
||||
"github.com/codegangsta/martini"
|
||||
|
||||
"github.com/gogits/gogs/modules/base"
|
||||
|
@ -35,6 +37,7 @@ func Toggle(options *ToggleOptions) martini.Handler {
|
|||
|
||||
if options.SignInRequire {
|
||||
if !ctx.IsSigned {
|
||||
ctx.SetCookie("redirect_to", "/"+url.QueryEscape(ctx.Req.RequestURI))
|
||||
ctx.Redirect("/user/login")
|
||||
return
|
||||
} else if !ctx.User.IsActive && base.Service.RegisterEmailConfirm {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue