11 lines
370 B
Go
11 lines
370 B
Go
package constants
|
|
|
|
const (
|
|
// AppCookieName is the name of the cookie that is used to store the application token
|
|
AppCookieName = "cookie"
|
|
// AdminCookieName is the name of the cookie that is used to store the admin token
|
|
AdminCookieName = "authorizer-admin"
|
|
// MfaCookieName is the name of the cookie that is used to store the mfa session
|
|
MfaCookieName = "mfa"
|
|
)
|