summaryrefslogtreecommitdiff
path: root/src/push/handlers/unregister.rs
diff options
context:
space:
mode:
authorOwen Jacobson <owen@grimoire.ca>2025-07-24 22:32:27 -0400
committerOwen Jacobson <owen@grimoire.ca>2025-07-24 22:32:27 -0400
commitb63380b251d04dd92f06aa5bbc22a72ca3e4bf8e (patch)
tree3956ec457131ce049fd91f2f53309bc0620fffe2 /src/push/handlers/unregister.rs
parent2e42057694851b82574e0a406ded429fb95a07fa (diff)
wip: 83B78D40-D7CB-4419-9FE7-E7D858909443
Diffstat (limited to 'src/push/handlers/unregister.rs')
-rw-r--r--src/push/handlers/unregister.rs16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/push/handlers/unregister.rs b/src/push/handlers/unregister.rs
new file mode 100644
index 0000000..a00ee92
--- /dev/null
+++ b/src/push/handlers/unregister.rs
@@ -0,0 +1,16 @@
+use axum::{
+ extract::{Path, State},
+ http::StatusCode,
+};
+
+use crate::{app::App, error::Internal, push::Id, token::extract::Identity};
+
+pub async fn handler(
+ State(app): State<App>,
+ identity: Identity,
+ Path(subscription): Path<Id>,
+) -> Result<StatusCode, Internal> {
+ app.push().unregister(&identity.user, &subscription).await?;
+
+ Ok(StatusCode::NO_CONTENT)
+}