We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2071604 commit 853f8caCopy full SHA for 853f8ca
content/security/rate-limiting.md
@@ -47,15 +47,14 @@ This `@SkipThrottle()` decorator can be used to skip a route or a class or to ne
47
@SkipThrottle()
48
@Controller('users')
49
export class UsersController {
50
- // This route will skip rate limiting.
+ // Rate limiting is applied to this route.
51
@SkipThrottle(false)
52
dontSkip() {
53
- return "List users work with Rate limiting"
+ return "List users work with Rate limiting.";
54
}
55
-
56
- // Rate limiting is applied to this route.
+ // This route will skip rate limiting.
57
doSkip() {
58
- return "List users work without Rate limiting"
+ return "List users work without Rate limiting.";
59
60
61
```
0 commit comments