Skip to content

Commit

Permalink
phone number on audith on signups and login
Browse files Browse the repository at this point in the history
  • Loading branch information
argotte committed Jan 15, 2024
1 parent 2450ddc commit 7f8989c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/users/infrastructure/controllers/users.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,8 @@ export class UsersController {
new NestLogger(),
),
this.audithRepo,
// this.jwtService.decode(device_token).id,
body.phone,
// this.jwtService.decode(device_token).id,
);
/* const result = await service.execute(body);
Expand Down Expand Up @@ -214,6 +215,7 @@ export class UsersController {
new NestLogger(),
),
this.audithRepo,
body.phone
// this.jwtService.decode(device_token).id,
);
const result = await service.execute(body);
Expand Down Expand Up @@ -243,6 +245,7 @@ export class UsersController {
new NestLogger(),
),
this.audithRepo,
body.phone,
// this.jwtService.decode(body.token).id,
);
const data = await service.execute(body.phone);
Expand Down

0 comments on commit 7f8989c

Please sign in to comment.