(ctx context.Context, limit int, startSeq, endSeq uint64)
| 547 | } |
| 548 | |
| 549 | func (c *DatabaseCollection) QueryResync(ctx context.Context, limit int, startSeq, endSeq uint64) (sgbucket.QueryResultIterator, error) { |
| 550 | return c.QueryChannels(ctx, channels.UserStarChannel, startSeq, endSeq, limit, false) |
| 551 | } |
| 552 | |
| 553 | // Query to retrieve the set of user and role doc ids, using the syncDocs index |
| 554 | func (context *DatabaseContext) QueryPrincipals(ctx context.Context, startKey string, limit int) (sgbucket.QueryResultIterator, error) { |
nothing calls this directly
no test coverage detected