A fork of the Cocoon PDS but being made more distributed.
0

Configure Feed

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

at main 271 B View raw
1package server 2 3import ( 4 "net/http" 5 6 "github.com/gorilla/sessions" 7) 8 9func applyAccountSessionOptions(sess *sessions.Session, maxAge int) { 10 sess.Options = &sessions.Options{ 11 Path: "/", 12 MaxAge: maxAge, 13 HttpOnly: true, 14 SameSite: http.SameSiteLaxMode, 15 } 16}