Create scheduled message event #17

Merged
phoenix merged 28 commits from create_scheduled_message_event into alot_of_changes 2026-06-18 18:39:24 -04:00
Showing only changes of commit b243201302 - Show all commits
+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)
}