From 21f0a9200735cc91f1d5cdc7719767f3a56ead6a Mon Sep 17 00:00:00 2001 From: Drew Date: Wed, 10 Feb 2016 19:12:22 -0800 Subject: [PATCH] Fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d0c9cc80..63afa2a5 100644 --- a/README.md +++ b/README.md @@ -134,4 +134,4 @@ You can also set up an app on Parse, providing the connection string for your mo ### Not supported * Push - We did not rebuild a new push delivery system for parse-server, but we are open to working on one together with the community. -* `Parse.User.current()` or `Parse.Cloud.useMasterKey()` in cloud code. Instead of `Parse.User.current()` use `request.user` and instead of `Parse.Cloud.useMasterKey()` pass `useMasterKey: true` to each query. To make queries and saves as a specific used within Cloud Code, you need a session token, which you can pass in the request body, or find with a query. +* `Parse.User.current()` or `Parse.Cloud.useMasterKey()` in cloud code. Instead of `Parse.User.current()` use `request.user` and instead of `Parse.Cloud.useMasterKey()` pass `useMasterKey: true` to each query. To make queries and writes as a specific user within Cloud Code, you need a session token, which you can pass in the request body, or find with a query.