Versions in this module Expand all Collapse all v0 v0.7.8 Sep 25, 2024 Changes in this version type Manager + func (cookieManager *Manager) CreateForwardAuthCookie(username string, loginSessionId string) (http.Cookie, error) + func (cookieManager *Manager) ValidateForwardAuthCookie(r *http.Request) (*config.User, *session.LoginSession, bool) v0.7.7 Sep 9, 2024 Changes in this version + type Manager struct + func GetCookieManagerInstance() *Manager + func (cookieManager *Manager) CreateAuthCookie(username string, loginSessionId string) (http.Cookie, error) + func (cookieManager *Manager) CreateMessageCookie(message string) http.Cookie + func (cookieManager *Manager) DeleteAuthCookie() http.Cookie + func (cookieManager *Manager) GetMessageCookieValue(r *http.Request) string + func (cookieManager *Manager) ValidateAuthCookie(r *http.Request) (*config.User, *session.LoginSession, bool) + type Now func() time.Time