parse-server 9.5.0-alpha.4 → 9.5.0-alpha.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -0
- package/lib/Controllers/DatabaseController.js +7 -2
- package/lib/Error.js +5 -3
- package/lib/Routers/FunctionsRouter.js +2 -1
- package/lib/cloud-code/Parse.Cloud.js +11 -6
- package/lib/triggers.js +13 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -305,6 +305,9 @@ The client keys used with Parse are no longer necessary with Parse Server. If yo
|
|
|
305
305
|
|
|
306
306
|
<sub>(1) `Parse.Object.createdAt`, `Parse.Object.updatedAt`.</sub>
|
|
307
307
|
|
|
308
|
+
> [!NOTE]
|
|
309
|
+
> In Cloud Code, both `masterKey` and `readOnlyMasterKey` set `request.master` to `true`. To distinguish between them, check `request.isReadOnly`. For example, use `request.master && !request.isReadOnly` to ensure full master key access.
|
|
310
|
+
|
|
308
311
|
## Email Verification and Password Reset
|
|
309
312
|
|
|
310
313
|
Verifying user email addresses and enabling password reset via email requires an email adapter. There are many email adapters provided and maintained by the community. The following is an example configuration with an example email adapter. See the [Parse Server Options][server-options] for more details and a full list of available options.
|