Commit 741e6c8b authored by Muhammad Umair Khan's avatar Muhammad Umair Khan
Browse files

minor update in session-store.go

parent 4bb4362c
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -99,6 +99,8 @@ func NewSessionStore(addr string) (ss *SessionStore, err error) {
		Path:     "/",
		MaxAge:   SessionDuration, // 20 minutes
		HttpOnly: true,
		Secure:   true,
		SameSite: http.SameSiteLaxMode,
	}
	log.Info("Created Cookie Store")