diff options
Diffstat (limited to 'src/graphql/mutation.rs')
-rw-r--r-- | src/graphql/mutation.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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")) } |