Get contact #10

Merged
phoenix merged 6 commits from get_contact into main 2026-06-14 23:25:35 -04:00
Showing only changes of commit 0b89688efc - Show all commits
+2 -2
View File
@@ -10,7 +10,7 @@ pub mod host {
pub mod init {
use std::time::Duration;
use axum::routing::post;
use axum::routing::{get, post};
use tower_http::timeout::TimeoutLayer;
use utoipa::OpenApi;
@@ -91,7 +91,7 @@ pub mod init {
)
.route(
crate::caller::endpoints::GET_CONTACT,
post(contact_endpoints::get_contacts).route_layer(axum::middleware::from_fn(
get(contact_endpoints::get_contacts).route_layer(axum::middleware::from_fn(
crate::auth::auth::<axum::body::Body>,
)),
)