summaryrefslogtreecommitdiff
path: root/src/graphql/routes.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/graphql/routes.rs
parenta92fb07d23fb2268a6f4e650c5cbd00ad993e760 (diff)
Authentication for endpoints
Diffstat (limited to 'src/graphql/routes.rs')
-rw-r--r--src/graphql/routes.rs9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/graphql/routes.rs b/src/graphql/routes.rs
index e15267e..a566c65 100644
--- a/src/graphql/routes.rs
+++ b/src/graphql/routes.rs
@@ -2,11 +2,14 @@ use crate::graphql::mutation::Mutation;
use crate::graphql::query::Query;
use async_graphql::{EmptySubscription, Schema};
use async_graphql_axum::{GraphQLRequest, GraphQLResponse};
-use std::sync::Arc;
+use axum::extract::Extension;
+
+use super::types::jwt::Authentication;
pub async fn graphql_handler(
- schema: Arc<Schema<Query, Mutation, EmptySubscription>>,
+ schema: Extension<Schema<Query, Mutation, EmptySubscription>>,
+ auth: Authentication,
req: GraphQLRequest,
) -> GraphQLResponse {
- schema.execute(req.into_inner()).await.into()
+ schema.execute(req.0.data(auth)).await.into()
}