Skip to content

Commit 228bdfd

Browse files
committed
Merge branch 'master' of github.com:mevdschee/php-crud-api
2 parents 0639d71 + 5089f92 commit 228bdfd

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
@@ -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 a list operation returns ("100")
202-
- "pageLimits.records": The maximum number of records a list operation returns ("1000")
201+
- "pageLimits.pages": The maximum page number that a list operation allows ("100")
202+
- "pageLimits.records": The maximum number of records returned by a list operation ("1000")
203203
- "customization.beforeHandler": Handler to implement request customization ("")
204204
- "customization.afterHandler": Handler to implement response customization ("")
205205

@@ -732,7 +732,7 @@ It also sets the column "customer_id" on "create" to "12" and removes the column
732732
### Prevent high load and scraping
733733

734734
You may use the "pageLimits" middleware to limit the page number and the number records returned from a list operation.
735-
If you want no more than 10 pages with a maximum of 25 records each, you can specify:
735+
If you want to allow no more than 10 pages with a maximum of 25 records each, you can specify:
736736

737737
'pageLimits.pages' => 10,
738738
'pageLimits.records' => 25,

0 commit comments

Comments
 (0)