2022-05-29 11:52:46 +00:00
|
|
|
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"
|
2023-07-23 05:02:14 +00:00
|
|
|
// MfaCookieName is the name of the cookie that is used to store the mfa session
|
2023-07-20 07:11:39 +00:00
|
|
|
MfaCookieName = "mfa"
|
2022-05-29 11:52:46 +00:00
|
|
|
)
|