We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e02cad1 commit 171cba6Copy full SHA for 171cba6
functions.js
@@ -13,13 +13,9 @@ function handleCloudFunction(req) {
13
var response = createResponseObject(resolve, reject);
14
var request = {
15
params: req.body || {},
16
-<<<<<<< HEAD
17
master : req.auth ? req.auth.isMaster : false,
18
- user : req.auth && req.auth.user ? req.auth.user : undefined,
19
- installationId : req.auth && req.auth.installationId ? req.auth.installationId : undefined
20
-=======
+ installationId : req.auth && req.auth.installationId ? req.auth.installationId : undefined,
21
user: req.auth && req.auth.user || {}
22
->>>>>>> upstream/master
23
};
24
Parse.Cloud.Functions[req.params.functionName](request, response);
25
});
0 commit comments