Get schedule message endpoint (#16)
textsender_api PR / Rustfmt (pull_request) Successful in 38s
textsender_api PR / Check (pull_request) Successful in 1m38s
textsender_api PR / Clippy (pull_request) Successful in 2m3s

Reviewed-on: phoenix/textsender_api#16
This commit was merged in pull request #16.
This commit is contained in:
2026-06-18 14:19:21 -04:00
parent d1bc5eb830
commit 825575930e
7 changed files with 222 additions and 2 deletions
+6
View File
@@ -130,6 +130,12 @@ pub mod init {
axum::middleware::from_fn(crate::auth::auth::<axum::body::Body>),
),
)
.route(
crate::caller::endpoints::GET_SCHEDULE_MESSAGE,
get(scheduling_endpoints::get_scheduled_messages).route_layer(
axum::middleware::from_fn(crate::auth::auth::<axum::body::Body>),
),
)
.layer(cors::configure_cors().await)
}