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