summaryrefslogtreecommitdiffstats
path: root/src/routes/logout.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/routes/logout.rs')
-rw-r--r--src/routes/logout.rs11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/routes/logout.rs b/src/routes/logout.rs
new file mode 100644
index 0000000..712b74c
--- /dev/null
+++ b/src/routes/logout.rs
@@ -0,0 +1,11 @@
+use actix_session::Session;
+use actix_web::http::header::LOCATION;
+use actix_web::{post, HttpResponse};
+
+#[post("/logout")]
+async fn post(session: Session) -> HttpResponse {
+ session.purge();
+ HttpResponse::SeeOther()
+ .insert_header((LOCATION, "/"))
+ .finish()
+}