From a76200bb7adb6189d84e0e98d6233a470ebeee98 Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Wed, 21 Aug 2024 17:34:58 +0200 Subject: Authentication for endpoints --- src/main.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/main.rs') diff --git a/src/main.rs b/src/main.rs index 04e2564..8dfc145 100644 --- a/src/main.rs +++ b/src/main.rs @@ -26,6 +26,7 @@ use tracing::Span; async fn create_app() -> Router { logger::setup(); let dbclient = db::setup().await.unwrap(); + let state = state::AppState { client: Arc::new(dbclient), }; @@ -37,10 +38,11 @@ async fn create_app() -> Router { ) .data(state.clone()) .finish(); + Router::new() .route( "/graphql", - post(move |req| graphql::routes::graphql_handler(schema.clone().into(), req)), + post(graphql::routes::graphql_handler).layer(Extension(schema.clone())), ) .fallback(crate::routes::page_404) // Mark the `Authorization` request header as sensitive so it doesn't -- cgit v1.2.3-18-g5258