(@Req() req: Request)
| 19 | @UseGuards(JwtAuthGuard) |
| 20 | @Get('me') |
| 21 | async getCurrentUser(@Req() req: Request) { |
| 22 | const user = await this.authService.getCurrentUser(req); |
| 23 | return user; |
| 24 | } |
| 25 | } |
nothing calls this directly
no outgoing calls
no test coverage detected