summaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2024-08-21 17:34:58 +0200
committerSanto Cariotti <santo@dcariotti.me>2024-08-21 17:34:58 +0200
commita76200bb7adb6189d84e0e98d6233a470ebeee98 (patch)
treef0c1dd5aba99ff33d01a5780f695cf65a9dcc411 /src/main.rs
parenta92fb07d23fb2268a6f4e650c5cbd00ad993e760 (diff)
Authentication for endpoints
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs4
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