mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-09 19:31:21 +01:00
Mirror fix
This commit is contained in:
parent
a76a948a02
commit
a41a1fe60d
3 changed files with 3 additions and 6 deletions
|
@ -206,7 +206,7 @@ func runWeb(*cli.Context) {
|
||||||
r.Post("/:org/teams/new", bindIgnErr(auth.CreateTeamForm{}), org.NewTeamPost)
|
r.Post("/:org/teams/new", bindIgnErr(auth.CreateTeamForm{}), org.NewTeamPost)
|
||||||
r.Get("/:org/teams/:team/edit", org.EditTeam)
|
r.Get("/:org/teams/:team/edit", org.EditTeam)
|
||||||
|
|
||||||
r.Get("/:org/team/:team",org.SingleTeam)
|
r.Get("/:org/team/:team", org.SingleTeam)
|
||||||
|
|
||||||
r.Get("/:org/settings", org.Settings)
|
r.Get("/:org/settings", org.Settings)
|
||||||
r.Post("/:org/settings", bindIgnErr(auth.OrgSettingForm{}), org.SettingsPost)
|
r.Post("/:org/settings", bindIgnErr(auth.OrgSettingForm{}), org.SettingsPost)
|
||||||
|
|
|
@ -139,10 +139,6 @@ func (ctx *Context) Handle(status int, title string, err error) {
|
||||||
ctx.HTML(status, base.TplName(fmt.Sprintf("status/%d", status)))
|
ctx.HTML(status, base.TplName(fmt.Sprintf("status/%d", status)))
|
||||||
}
|
}
|
||||||
|
|
||||||
func (ctx *Context) Debug(msg string, args ...interface{}) {
|
|
||||||
log.Debug(msg, args...)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (ctx *Context) GetCookie(name string) string {
|
func (ctx *Context) GetCookie(name string) string {
|
||||||
cookie, err := ctx.Req.Cookie(name)
|
cookie, err := ctx.Req.Cookie(name)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -356,7 +352,7 @@ func InitContext() martini.Handler {
|
||||||
ctx.Session.SessionRelease(res)
|
ctx.Session.SessionRelease(res)
|
||||||
|
|
||||||
if flash := ctx.Flash.Encode(); len(flash) > 0 {
|
if flash := ctx.Flash.Encode(); len(flash) > 0 {
|
||||||
ctx.SetCookie("gogs_flash", ctx.Flash.Encode(), 0)
|
ctx.SetCookie("gogs_flash", flash, 0)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
|
@ -341,6 +341,7 @@ func newSessionService() {
|
||||||
log.Fatal("Init session system failed, provider: %s, %v",
|
log.Fatal("Init session system failed, provider: %s, %v",
|
||||||
SessionProvider, err)
|
SessionProvider, err)
|
||||||
}
|
}
|
||||||
|
go SessionManager.GC()
|
||||||
|
|
||||||
log.Info("Session Service Enabled")
|
log.Info("Session Service Enabled")
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue