Skip to content

Commit

Permalink
Merge pull request #506 from chaynHQ/develop
Browse files Browse the repository at this point in the history
Merge Develop onto Main
  • Loading branch information
annarhughes authored Jul 3, 2024
2 parents 05cc216 + 9162f64 commit 0224744
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/user/user.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export class UserController {
@Get('/me')
@UseGuards(FirebaseAuthGuard)
async getUserByFirebaseId(@Req() req: Request): Promise<GetUserDto> {
const user = req['user'];
const user = req['userEntity'];
this.userService.updateUser({ lastActiveAt: new Date() }, user.id);
return user;
}
Expand Down

0 comments on commit 0224744

Please sign in to comment.