Fixing routing issue

This commit is contained in:
2026-06-18 13:58:21 -04:00
parent 1fec37b09a
commit af21468180
+1 -1
View File
@@ -132,7 +132,7 @@ pub mod init {
) )
.route( .route(
crate::caller::endpoints::GET_SCHEDULE_MESSAGE, crate::caller::endpoints::GET_SCHEDULE_MESSAGE,
post(scheduling_endpoints::get_scheduled_messages).route_layer( get(scheduling_endpoints::get_scheduled_messages).route_layer(
axum::middleware::from_fn(crate::auth::auth::<axum::body::Body>), axum::middleware::from_fn(crate::auth::auth::<axum::body::Body>),
), ),
) )