Update scheduled message status endpoint (#20)
textsender_api PR / Rustfmt (pull_request) Successful in 38s
textsender_api PR / Check (pull_request) Successful in 1m14s
textsender_api PR / Clippy (pull_request) Failing after 1m46s

Reviewed-on: phoenix/textsender_api#20
This commit was merged in pull request #20.
This commit is contained in:
2026-06-19 18:34:39 -04:00
parent 3a387813d7
commit c98d545afe
7 changed files with 249 additions and 2 deletions
+6
View File
@@ -154,6 +154,12 @@ pub mod init {
axum::middleware::from_fn(crate::auth::auth::<axum::body::Body>),
),
)
.route(
crate::caller::endpoints::UPDATE_SCHEDULED_MESSAGE_STATUS,
patch(scheduling_endpoints::update_scheduled_message_status).route_layer(
axum::middleware::from_fn(crate::auth::auth::<axum::body::Body>),
),
)
.layer(cors::configure_cors().await)
}