We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e620c97 commit e2cb416Copy full SHA for e2cb416
src/useCases/authentication/UserAuthenticationController.ts
@@ -12,7 +12,7 @@ export class UserAuthenticationController{
12
const {email,password} = request.body;
13
14
try{
15
- await this.userAuthentication.execute({email:email,password:password});
+ await this.userAuthentication.execute({email:email,password:password},response,request);
16
return response.status(200).json("logged with successfull");
17
18
} catch(error){
0 commit comments