-
-
Notifications
You must be signed in to change notification settings - Fork 2k
Closed
Description
In constants.go:
// Cookie SameSite
// https://datatracker.ietf.org/doc/html/draft-ietf-httpbis-rfc6265bis-03#section-4.1.2.7
const (
CookieSameSiteDisabled = "disabled" // not in RFC, just control "SameSite" attribute will not be set.
CookieSameSiteLaxMode = "lax"
CookieSameSiteStrictMode = "strict"
CookieSameSiteNoneMode = "none"
)Should Be:
// Cookie SameSite
// https://datatracker.ietf.org/doc/html/draft-ietf-httpbis-rfc6265bis-03#section-4.1.2.7
const (
CookieSameSiteDisabled = "disabled" // not in RFC, just control "SameSite" attribute will not be set.
CookieSameSiteLaxMode = "Lax"
CookieSameSiteStrictMode = "Strict"
CookieSameSiteNoneMode = "None"
)RFC: samesite-value = "Strict" / "Lax" / "None"
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels