From c11d902f7e37e5bbd5565bf7353e459c793ade52 Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Fri, 30 Aug 2024 15:43:29 +0200 Subject: Return user_id on JWT creation --- src/graphql/mutation.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/graphql/mutation.rs') diff --git a/src/graphql/mutation.rs b/src/graphql/mutation.rs index 140d98a..682d9b6 100644 --- a/src/graphql/mutation.rs +++ b/src/graphql/mutation.rs @@ -39,7 +39,7 @@ impl Mutation { // Create a new claim using the found ID let claims = jwt::Claims::new(id[0]); let token = claims.get_token().unwrap(); - Ok(jwt::AuthBody::new(token)) + Ok(jwt::AuthBody::new(token, id[0])) } else { Err(Error::new("Invalid email or password")) } -- cgit v1.2.3-18-g5258