crawlnicle/src/handlers/logout.rs

7 lines
179 B
Rust
Raw Normal View History

2023-10-13 12:07:38 +00:00
use crate::{models::user::AuthContext, htmx::HXRedirect};
2023-09-25 05:35:26 +00:00
2023-10-13 12:07:38 +00:00
pub async fn get(mut auth: AuthContext) -> HXRedirect {
2023-09-25 05:35:26 +00:00
auth.logout().await;
2023-10-13 12:07:38 +00:00
HXRedirect::to("/").reload(true)
2023-09-25 05:35:26 +00:00
}