Monorepo for Tangled tangled.org
12

Configure Feed

Select the types of activity you want to include in your feed.

appview/oauth: use SameSiteLaxMode by default

Signed-off-by: oppiliappan <me@oppi.li>

author
oppiliappan
date (May 26, 2026, 11:32 AM +0100) commit 2bd1c5c2 parent 022cee50 change-id ommwyzpp
+3
+3
appview/oauth/oauth.go
··· 128 128 } 129 129 130 130 sessStore := sessions.NewCookieStore([]byte(config.Core.CookieSecret)) 131 + sessStore.Options.SameSite = http.SameSiteLaxMode 132 + sessStore.Options.HttpOnly = true 133 + sessStore.Options.Secure = !config.Core.Dev 131 134 132 135 clientApp := oauth.NewClientApp(&oauthConfig, authStore) 133 136 clientApp.Dir = res.Directory()