mirror of
https://codeberg.org/davrot/forgejo.git
synced 2025-07-08 19:00:02 +02:00
parent
461406070c
commit
ce43d38b4f
6 changed files with 30 additions and 12 deletions
5
vendor/gitea.com/go-chi/session/session.go
generated
vendored
5
vendor/gitea.com/go-chi/session/session.go
generated
vendored
|
@ -101,7 +101,8 @@ type Options struct {
|
|||
FlashEncryptionKey string
|
||||
}
|
||||
|
||||
func prepareOptions(options []Options) Options {
|
||||
// PrepareOptions gives some default values for options
|
||||
func PrepareOptions(options []Options) Options {
|
||||
var opt Options
|
||||
if len(options) > 0 {
|
||||
opt = options[0]
|
||||
|
@ -231,7 +232,7 @@ func NewCookie(name string, value string, others ...interface{}) *http.Cookie {
|
|||
// Sessioner is a middleware that maps a session.SessionStore service into the Macaron handler chain.
|
||||
// An single variadic session.Options struct can be optionally provided to configure.
|
||||
func Sessioner(options ...Options) func(next http.Handler) http.Handler {
|
||||
opt := prepareOptions(options)
|
||||
opt := PrepareOptions(options)
|
||||
manager, err := NewManager(opt.Provider, opt)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
|
|
2
vendor/modules.txt
vendored
2
vendor/modules.txt
vendored
|
@ -7,7 +7,7 @@ code.gitea.io/gitea-vet/checks
|
|||
# code.gitea.io/sdk/gitea v0.13.1
|
||||
## explicit
|
||||
code.gitea.io/sdk/gitea
|
||||
# gitea.com/go-chi/session v0.0.0-20201218134809-7209fa084f27
|
||||
# gitea.com/go-chi/session v0.0.0-20210108030337-0cb48c5ba8ee
|
||||
## explicit
|
||||
gitea.com/go-chi/session
|
||||
gitea.com/go-chi/session/couchbase
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue