rewrite task list action

This commit is contained in:
2021-10-30 00:41:28 +02:00
parent c63b1015e1
commit e0cb5a88bd
4 changed files with 123 additions and 203 deletions

View File

@@ -40,4 +40,17 @@ interface SingleTaskAclAwareRepositoryInterface
?string $pattern = null,
?array $flags = []
): int;
public function countByAllViewable(
?string $pattern = null,
?array $flags = []
): int;
public function findByAllViewable(
?string $pattern = null,
?array $flags = [],
?int $start = 0,
?int $limit = 50,
?array $orderBy = []
): array;
}