Skip to content

Commit 4c262df

Browse files
authored
fix(direct-access): save context not present if direct access enabled
[Open discussion](#6459) for feature with other issues
1 parent d5ac0f7 commit 4c262df

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/ParseServerRESTController.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,10 @@ function ParseServerRESTController(applicationId, router) {
101101
return new Promise((resolve, reject) => {
102102
getAuth(options, config).then(auth => {
103103
const request = {
104-
body: data,
104+
body: {
105+
...data,
106+
_context: options.context
107+
},
105108
config,
106109
auth,
107110
info: {

0 commit comments

Comments
 (0)