diff --git a/src/main.rs b/src/main.rs index d5ba35a..d4ce8ab 100644 --- a/src/main.rs +++ b/src/main.rs @@ -17,7 +17,8 @@ use sqlx::sqlite::SqlitePool; #[derive(Clone)] struct AppState { database: SqlitePool, - token_expiration: u64, + jwt_token_expiration: u64, + refresh_token_expiration: u64, allow_origins: Vec<&'static str>, } @@ -28,7 +29,8 @@ async fn main() -> std::io::Result<()> { .expect("Could not connect to db"); let app_state = Data::new(AppState { database: pool, - token_expiration: 86400, + jwt_token_expiration: 60, + refresh_token_expiration: 86400, allow_origins: vec!["http://localhost:5173"], }); HttpServer::new(move || { @@ -42,8 +44,6 @@ async fn main() -> std::io::Result<()> { .add(("Access-Control-Allow-Credentials", "true")), ) .service(login) - .service(register) - .service(logout) .service(get_case) .service(get_cases) .service(get_item)