NestJS - Guards
Consider this NestJS route guarded by AuthGuard and RolesGuard:
@UseGuards(AuthGuard, RolesGuard)
@Get('dashboard')
dashboard() {
return 'Dashboard Data';
}What happens if AuthGuard allows the request but RolesGuard denies it?
