Making endpoint available

This commit is contained in:
2026-06-19 16:40:10 -04:00
parent c9e66e228d
commit 8b9acd3491
2 changed files with 84 additions and 0 deletions
+6
View File
@@ -154,6 +154,12 @@ pub mod init {
axum::middleware::from_fn(crate::auth::auth::<axum::body::Body>),
),
)
.route(
crate::caller::endpoints::UPDATE_SCHEDULED_MESSAGE_STATUS,
patch(scheduling_endpoints::update_scheduled_message_status).route_layer(
axum::middleware::from_fn(crate::auth::auth::<axum::body::Body>),
),
)
.layer(cors::configure_cors().await)
}