Skip to content

Commit acaa31a

Browse files
committed
defintions
1 parent b217bb3 commit acaa31a

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

src/Options/Definitions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -589,7 +589,7 @@ module.exports.RateLimitOptions = {
589589
zone: {
590590
env: 'PARSE_SERVER_RATE_LIMIT_ZONE',
591591
help:
592-
"The type of rate limit to apply. The following types are supported:- `global`: rate limit based on the number of requests made by all users- `ip`: rate limit based on the IP address of the request- `user`: rate limit based on the user ID of the request- `session`: rate limit based on the session token of the request:default: 'ip'",
592+
"The type of rate limit to apply. The following types are supported:<br><br>- `global`: rate limit based on the number of requests made by all users <br>- `ip`: rate limit based on the IP address of the request <br>- `user`: rate limit based on the user ID of the request <br>- `session`: rate limit based on the session token of the request <br><br><br>:default: 'ip'",
593593
},
594594
};
595595
module.exports.SecurityOptions = {

src/Options/docs.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Options/index.js

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -325,10 +325,12 @@ export interface RateLimitOptions {
325325
redisUrl: ?string;
326326
/*
327327
The type of rate limit to apply. The following types are supported:
328-
- `global`: rate limit based on the number of requests made by all users
329-
- `ip`: rate limit based on the IP address of the request
330-
- `user`: rate limit based on the user ID of the request
331-
- `session`: rate limit based on the session token of the request
328+
<br><br>
329+
- `global`: rate limit based on the number of requests made by all users <br>
330+
- `ip`: rate limit based on the IP address of the request <br>
331+
- `user`: rate limit based on the user ID of the request <br>
332+
- `session`: rate limit based on the session token of the request <br>
333+
<br><br>
332334
:default: 'ip'
333335
*/
334336
zone: ?string;

0 commit comments

Comments
 (0)