diff --git a/server/src/api/auth.rs b/server/src/api/auth.rs index 415a122..29de90d 100644 --- a/server/src/api/auth.rs +++ b/server/src/api/auth.rs @@ -69,12 +69,6 @@ pub(super) async fn sign_up( Ok(()) } -#[delete("/")] -pub(super) async fn sign_out(cookies: &CookieJar<'_>) { - cookies.remove_private(Cookie::named("user")); - cookies.remove(Cookie::named("name")); -} - /// Authentication guard #[derive(Deref)] pub(super) struct Auth(users::Model); diff --git a/server/src/api/mod.rs b/server/src/api/mod.rs index eaae998..584d78e 100644 --- a/server/src/api/mod.rs +++ b/server/src/api/mod.rs @@ -114,7 +114,7 @@ pub fn start_server(db: DatabaseConnection) -> Rocket { "/api/v1/groups", routes![all_groups, group, insert_group, update_group, delete_group], ) - .mount("/api/v1/auth", routes![auth::login, auth::sign_up, auth::sign_out]) + .mount("/api/v1/auth", routes![auth::login, auth::sign_up]) .mount("/", FileServer::from("/src/public")); #[cfg(feature = "unsafe_import")]