()
| 1519 | return this; |
| 1520 | }, |
| 1521 | find() { |
| 1522 | if (!shouldReturn) { |
| 1523 | return Promise.resolve([]); |
| 1524 | } |
| 1525 | //Return a role with the name "liveQueryRead" as that is what was set on the ACL |
| 1526 | const liveQueryRole = new Parse.Role('liveQueryRead', new Parse.ACL()); |
| 1527 | liveQueryRole.id = 'abcdef1234'; |
| 1528 | return Promise.resolve([liveQueryRole]); |
| 1529 | }, |
| 1530 | }; |
| 1531 | }); |
| 1532 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…