diff --git a/identity-api-rs/src/auth.rs b/identity-api-rs/src/auth.rs index b0d32ac..26df2d5 100644 --- a/identity-api-rs/src/auth.rs +++ b/identity-api-rs/src/auth.rs @@ -24,5 +24,5 @@ pub fn expiration_time() -> u64 { SystemTime::now() .duration_since(SystemTime::UNIX_EPOCH) .expect("time went backwards") - .as_secs() + 180 * 24 * 3600 + .as_secs() + 30 * 24 * 3600 } \ No newline at end of file