Files
authorizer/server/constants/cookie.go

11 lines
370 B
Go
Raw Normal View History

2022-05-29 17:22:46 +05:30
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 13:02:14 +08:00
// MfaCookieName is the name of the cookie that is used to store the mfa session
MfaCookieName = "mfa"
2022-05-29 17:22:46 +05:30
)