Create scheduled message event (#17)
textsender_api PR / Rustfmt (pull_request) Successful in 40s
textsender_api PR / Check (pull_request) Successful in 1m33s
textsender_api PR / Clippy (pull_request) Successful in 2m12s

Reviewed-on: phoenix/textsender_api#17
This commit was merged in pull request #17.
This commit is contained in:
2026-06-18 18:39:24 -04:00
parent 825575930e
commit 7873e8ed00
12 changed files with 586 additions and 166 deletions
+6
View File
@@ -136,6 +136,12 @@ pub mod init {
axum::middleware::from_fn(crate::auth::auth::<axum::body::Body>),
),
)
.route(
crate::caller::endpoints::CREATE_SCHEDULED_MESSAGE_EVENT,
post(scheduling_endpoints::create_scheduled_message_event).route_layer(
axum::middleware::from_fn(crate::auth::auth::<axum::body::Body>),
),
)
.layer(cors::configure_cors().await)
}