mirror of
https://github.com/go-gitea/gitea
synced 2025-07-22 18:28:37 +00:00
merge
This commit is contained in:
5
web.go
5
web.go
@@ -12,6 +12,7 @@ import (
|
||||
"github.com/codegangsta/cli"
|
||||
"github.com/codegangsta/martini"
|
||||
"github.com/martini-contrib/render"
|
||||
"github.com/martini-contrib/sessions"
|
||||
|
||||
"github.com/gogits/gogs/routers"
|
||||
"github.com/gogits/gogs/routers/repo"
|
||||
@@ -46,6 +47,10 @@ func runWeb(*cli.Context) {
|
||||
// Middleware.
|
||||
m.Use(render.Renderer(render.Options{Funcs: []template.FuncMap{AppHelpers}}))
|
||||
|
||||
// TODO: should use other store because cookie store is not secure.
|
||||
store := sessions.NewCookieStore([]byte("secret123"))
|
||||
m.Use(sessions.Sessions("my_session", store))
|
||||
|
||||
// Routers.
|
||||
m.Get("/", routers.Dashboard)
|
||||
m.Any("/login", user.SignIn)
|
||||
|
Reference in New Issue
Block a user