File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -129,6 +129,7 @@ These features are new in v2 and were not included in v1:
129129 - Error reporting in JSON with corresponding HTTP status
130130 - Support for basic authentication and via auth provider (JWT)
131131 - Support for basic firewall functionality
132+ - Prevent database scraping using list limits
132133
133134### Dropped features
134135
@@ -157,7 +158,7 @@ You can enable the following middleware using the "middlewares" config parameter
157158- "validation": Return input validation errors for custom rules
158159- "sanitation": Apply input sanitation on create and update
159160- "multiTenancy": Restricts tenants access in a multi-tenant scenario
160- - "pageLimits": Restricts list operations to prevent high load and scraping
161+ - "pageLimits": Restricts list operations to prevent database scraping
161162- "customization": Provides handlers for request and response customization
162163
163164The "middlewares" config parameter is a comma separated list of enabled middlewares.
@@ -725,7 +726,7 @@ If your tenants are identified by the "customer_id" column you can use the follo
725726This construct adds a filter requiring "customer_id" to be "12" to every operation (except for "create").
726727It also sets the column "customer_id" on "create" to "12" and removes the column from any other write operation.
727728
728- ### Prevent high load and scraping
729+ ### Prevent database scraping
729730
730731You may use the "pageLimits" middleware to limit the page number and the number records returned from a list operation.
731732If you want to allow no more than 10 pages with a maximum of 25 records each, you can specify:
You can’t perform that action at this time.
0 commit comments