NestJS - Authentication
What will be the result of this NestJS controller method when called with a valid JWT token?
```typescript
@UseGuards(AuthGuard('jwt'))
@Get('data')
getData() {
return { data: 'Secure data' };
}
```
15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions