From f221d03c6837f93ef874f9f6a219cb74175a0fd8 Mon Sep 17 00:00:00 2001 From: Frederico Santos Date: Sun, 21 Jul 2024 21:56:37 +0100 Subject: [PATCH] chore: Set session cookie expiration to 3 months --- api/endpoints.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/api/endpoints.go b/api/endpoints.go index 8f88a64..1c1ed43 100644 --- a/api/endpoints.go +++ b/api/endpoints.go @@ -27,6 +27,7 @@ import ( "os" "strconv" "strings" + "time" "github.com/pagefaultgames/rogueserver/api/account" "github.com/pagefaultgames/rogueserver/api/daily" @@ -632,6 +633,7 @@ func handleProviderCallback(w http.ResponseWriter, r *http.Request) { Secure: true, SameSite: http.SameSiteStrictMode, Domain: "beta.pokerogue.net", + Expires: time.Now().Add(time.Hour * 24 * 30 * 3), // 3 months }) }