Update unsupported cloud code functions in readme.

This commit is contained in:
Drew
2016-02-10 19:07:47 -08:00
parent dea7bb5c18
commit d8dd57441d

View File

@@ -134,3 +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.