(callback)
| 1575 | return Promise.resolve([liveQueryRole]); |
| 1576 | }, |
| 1577 | each(callback) { |
| 1578 | //Return a role with the name "liveQueryRead" as that is what was set on the ACL |
| 1579 | const liveQueryRole = new Parse.Role('liveQueryRead', new Parse.ACL()); |
| 1580 | liveQueryRole.id = 'abcdef1234'; |
| 1581 | callback(liveQueryRole); |
| 1582 | return Promise.resolve(); |
| 1583 | }, |
| 1584 | }; |
| 1585 | }); |
| 1586 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…