NestJS - Guards
Given this code snippet, what will happen when a request hits the
GET /users/profile route?@UseGuards(GlobalGuard)
@Controller('users')
@UseGuards(ControllerGuard)
export class UserController {
@Get('profile')
@UseGuards(RouteGuard)
getProfile() {
return 'User Profile';
}
}