You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -285,7 +285,7 @@ On list operations you may apply filters and joins.
285
285
### Filters
286
286
287
287
Filters provide search functionality, on list calls, using the "filter" parameter. You need to specify the column
288
-
name, a comma, the match type, another commma and the value you want to filter on. These are supported match types:
288
+
name, a comma, the match type, another comma and the value you want to filter on. These are supported match types:
289
289
290
290
- "cs": contain string (string contains value)
291
291
- "sw": start with (string starts with value)
@@ -572,7 +572,7 @@ This adjusts the titles of the posts. And the return values are the number of ro
572
572
[1,1]
573
573
574
574
Which means that there were two update operations and each of them had set one row. Batch operations use database
575
-
transactions, so they either all succeed or all fail (successful ones get roled back). If they fail the body will
575
+
transactions, so they either all succeed or all fail (successful ones get rolled back). If they fail the body will
576
576
contain the list of error documents. In the following response the first operation succeeded and the second operation
577
577
of the batch failed due to an integrity violation:
578
578
@@ -667,7 +667,7 @@ You can enable the following middleware using the "middlewares" config parameter
667
667
- "multiTenancy": Restricts tenants access in a multi-tenant scenario
668
668
- "pageLimits": Restricts list operations to prevent database scraping
669
669
- "joinLimits": Restricts join parameters to prevent database scraping
670
-
- "textSearch": Search in all text fields with a simple paramater
670
+
- "textSearch": Search in all text fields with a simple parameter
671
671
- "customization": Provides handlers for request and response customization
672
672
- "json": Support read/write of JSON strings as JSON objects/arrays
673
673
- "xml": Translates all input and output from JSON to XML
@@ -763,7 +763,7 @@ In the sections below you find more information on the built-in middleware.
763
763
### Authentication
764
764
765
765
Currently there are five types of authentication supported. They all store the authenticated user in the `$_SESSION` super global.
766
-
This variable can be used in the authorization handlers to decide wether or not sombeody should have read or write access to certain tables, columns or records.
766
+
This variable can be used in the authorization handlers to decide wether or not somebody should have read or write access to certain tables, columns or records.
767
767
The following overview shows the kinds of authentication middleware that you can enable.
768
768
769
769
| Name | Middleware | Authenticated via | Users are stored in | Session variable |
@@ -780,7 +780,7 @@ Below you find more information on each of the authentication types.
780
780
781
781
API key authentication works by sending an API key in a request header.
782
782
The header name defaults to "X-API-Key" and can be configured using the 'apiKeyAuth.header' configuration parameter.
783
-
Valid API keys must be configured using the 'apiKeyAuth.keys' configuration parameter (comma seperated list).
783
+
Valid API keys must be configured using the 'apiKeyAuth.keys' configuration parameter (comma separated list).
0 commit comments