Get scheduled message event (#18)
textsender_api PR / Check (pull_request) Successful in 1m25s
textsender_api PR / Rustfmt (pull_request) Successful in 1m34s
textsender_api PR / Clippy (pull_request) Successful in 2m0s

Reviewed-on: phoenix/textsender_api#18
This commit was merged in pull request #18.
This commit is contained in:
2026-06-18 19:59:22 -04:00
parent 7873e8ed00
commit c1557d09f6
4 changed files with 194 additions and 0 deletions
+6
View File
@@ -142,6 +142,12 @@ pub mod init {
axum::middleware::from_fn(crate::auth::auth::<axum::body::Body>),
),
)
.route(
crate::caller::endpoints::GET_SCHEDULED_MESSAGE_EVENT,
get(scheduling_endpoints::get_scheduled_message_events).route_layer(
axum::middleware::from_fn(crate::auth::auth::<axum::body::Body>),
),
)
.layer(cors::configure_cors().await)
}