Get Message Event Response endpoint (#23)
textsender_api PR / Rustfmt (pull_request) Successful in 50s
textsender_api PR / Clippy (pull_request) Successful in 1m22s
textsender_api PR / Check (pull_request) Successful in 2m11s
Rust Build / Rustfmt (pull_request) Successful in 37s
Rust Build / Test Suite (pull_request) Successful in 40s

Reviewed-on: phoenix/textsender_api#23
This commit was merged in pull request #23.
This commit is contained in:
2026-06-20 15:05:20 -04:00
parent a9d7429d75
commit 295140a216
7 changed files with 250 additions and 4 deletions
+6
View File
@@ -177,6 +177,12 @@ pub mod init {
axum::middleware::from_fn(crate::auth::auth::<axum::body::Body>),
),
)
.route(
crate::caller::endpoints::GET_MESSAGE_EVENT_RESPONSE,
get(event_endpoints::get_record_message_event_response).route_layer(
axum::middleware::from_fn(crate::auth::auth::<axum::body::Body>),
),
)
.layer(cors::configure_cors().await)
}