You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My ParseObject has ACLs set, which are two Roles. The current User is part of both roles. But the LiveQuery server is not firing events for this object. If I remove the Roles, and instead place use the User as the ACL, the events are fired.
Are Role ACLs not supported in LiveQuery?
My code is as follows:
let LiveQueryClient = Parse.LiveQueryClient;
let client = new LiveQueryClient({
applicationId: 'xxxxxx',
serverURL: "xxxxxx",
javascriptKey: 'xxxxxx',
masterKey: 'xxxxxx',
sessionToken: Parse.User.current().getSessionToken()
});
client.open();
let query = new Parse.Query('Team');
query.equalTo("name", "team");
let subscription = client.subscribe(query, Parse.User.current().getSessionToken());
The text was updated successfully, but these errors were encountered:
Uh oh!
There was an error while loading. Please reload this page.
My ParseObject has ACLs set, which are two Roles. The current User is part of both roles. But the LiveQuery server is not firing events for this object. If I remove the Roles, and instead place use the User as the ACL, the events are fired.
Are Role ACLs not supported in LiveQuery?
My code is as follows:
let LiveQueryClient = Parse.LiveQueryClient;
let client = new LiveQueryClient({
applicationId: 'xxxxxx',
serverURL: "xxxxxx",
javascriptKey: 'xxxxxx',
masterKey: 'xxxxxx',
sessionToken: Parse.User.current().getSessionToken()
});
The text was updated successfully, but these errors were encountered: