Expanded token lifespan to 30 days

This commit is contained in:
2024-08-03 20:48:43 +03:00
parent c4ff602ec7
commit 0614c4cad0

View File

@ -13,7 +13,7 @@ pub struct Params {
fn get_exp() -> i64 { fn get_exp() -> i64 {
let mut time = chrono::Utc::now(); let mut time = chrono::Utc::now();
time += TimeDelta::minutes(30); time += TimeDelta::days(30);
time.timestamp() time.timestamp()
} }