@Get('whoami')
  @ApiTags('whoami')
  async getCurrentUser(@Request() req) {
    return this.usersService.getUser(req.user._id);
  }