diff options
author | Santo Cariotti <santo@dcariotti.me> | 2024-08-21 17:34:58 +0200 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2024-08-21 17:34:58 +0200 |
commit | a76200bb7adb6189d84e0e98d6233a470ebeee98 (patch) | |
tree | f0c1dd5aba99ff33d01a5780f695cf65a9dcc411 /src/main.rs | |
parent | a92fb07d23fb2268a6f4e650c5cbd00ad993e760 (diff) |
Authentication for endpoints
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 4 |
1 files changed, 3 insertions, 1 deletions
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 |