From ac62b235af7a45a80df87440648eb4fa4f62e635 Mon Sep 17 00:00:00 2001 From: Drew Date: Thu, 11 Feb 2016 10:35:20 -0800 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 63afa2a5..a843d88a 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 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. +* `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 the user's session token, which is available in `request.user.getSessionToken()`.