hugo-cms/models/cookie.go

15 lines
205 B
Go
Raw Normal View History

2025-02-01 09:42:32 +11:00
package models
const (
AuthCookieName = "hugocrm_auth"
2025-02-01 10:56:59 +11:00
PrefCookieName = "hugocrm_pref"
2025-02-01 09:42:32 +11:00
)
type AuthCookie struct {
UserID int64 `json:"uid"`
}
2025-02-01 10:56:59 +11:00
type PrefCookie struct {
SiteID int64 `json:"siteId"`
}