Make session cookie permanent

This commit is contained in:
Jeremy Wall 2023-02-27 20:12:45 -05:00
parent 6421b12e27
commit 53a0515f28

View File

@ -97,6 +97,7 @@ pub async fn handler(
.domain(domain)
.secure(true)
.path("/")
.permanent()
.finish();
let parsed_cookie = match cookie.to_string().parse() {
Err(err) => {