Skip to content

Commit

Permalink
fix user code in login
Browse files Browse the repository at this point in the history
  • Loading branch information
FerLuisxd committed Apr 6, 2020
1 parent c8570b8 commit ca6da18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/auth/auth.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export class AuthService {
return
}
async loginUserExp(body:AuthDto) {
let response = await this.upbWebTestPool(body.password, body.password)
let response = await this.upbWebTestPool(body.userCode, body.password)
if(response.statusCode == 200){
let user = new User()
//this.userService.saveNewUser()
Expand Down

0 comments on commit ca6da18

Please sign in to comment.