File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 104
104
"tsconfig-paths" : " ^4.2.0" ,
105
105
"typescript" : " ^5.1.3"
106
106
}
107
- }
107
+ }
Original file line number Diff line number Diff line change @@ -17,15 +17,15 @@ export class UserResolver {
17
17
@Mutation ( ( ) => GqlUserWithToken , { name : 'login' } )
18
18
login (
19
19
@Args ( 'loginUserInput' )
20
- loginUserInput : LoginUserInput ,
20
+ loginUserInput :
21
+ LoginUserInput ,
21
22
) {
22
23
return this . userService . login ( loginUserInput ) ;
23
24
}
24
25
25
26
@AllowUnauthorizedRequest ( )
26
27
@Mutation ( ( ) => GqlUserWithToken )
27
- createUser ( @Args
28
- ( 'createUserInput' ) createUserInput : CreateUserInput ) {
28
+ createUser ( @Args ( 'createUserInput' ) createUserInput : CreateUserInput ) {
29
29
return this . userService . createUser ( createUserInput ) ;
30
30
}
31
31
@Query ( ( ) => GqlUserWithToken , { name : 'profile' } )
You can’t perform that action at this time.
0 commit comments