Skip to content

Commit 7b54d88

Browse files
committed
Merge branch 'master' of github.com:mevdschee/php-crud-api
2 parents b60f3b1 + 550adba commit 7b54d88

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ You can enable the following middleware using the "middlewares" config parameter
161161
- "validation": Return input validation errors for custom rules
162162
- "sanitation": Apply input sanitation on create and update
163163
- "multiTenancy": Restricts tenants access in a multi-tenant scenario
164-
- "pageLimits": Restricts list operations to become too heavy
164+
- "pageLimits": Restricts list operations to prevent heavy load and scraping
165165
- "customization": Provides handlers for request and response customization
166166

167167
The "middlewares" config parameter is a comma separated list of enabled middlewares.
@@ -198,8 +198,8 @@ You can tune the middleware behavior using middleware specific configuration par
198198
- "validation.handler": Handler to implement validation rules for input values ("")
199199
- "sanitation.handler": Handler to implement sanitation rules for input values ("")
200200
- "multiTenancy.handler": Handler to implement simple multi-tenancy rules ("")
201-
- "pageLimits.pages": The maximum page number that may be requested ("100")
202-
- "pageLimits.records": The maximum number of records that a page may contain ("1000")
201+
- "pageLimits.pages": The maximum page number a list operation returns ("100")
202+
- "pageLimits.records": The maximum number of records a list operation returns ("1000")
203203
- "customization.beforeHandler": Handler to implement request customization ("")
204204
- "customization.afterHandler": Handler to implement response customization ("")
205205

0 commit comments

Comments
 (0)