authelia/internal/session/const.go

18 lines
316 B
Go
Raw Permalink Normal View History

package session
import (
"time"
)
const (
testDomain = "example.com"
testExpiration = time.Second * 40
testName = "my_session"
testUsername = "john"
)
const (
userSessionStorerKey = "UserSession"
randomSessionChars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-_!#$%^*"
)