layout task list

This commit is contained in:
2021-10-27 11:57:51 +02:00
parent 965ea528e3
commit 333a4d94b2
12 changed files with 321 additions and 41 deletions

View File

@@ -0,0 +1,10 @@
<?php
namespace Chill\TaskBundle\Repository;
interface SingleTaskAclAwareRepositoryInterface
{
public function findByCurrentUsersTasks(?string $pattern = null, ?array $flags = [], ?int $start = 0, ?int $limit = 50, ?array $orderBy = []): array;
public function countByCurrentUsersTasks(?string $pattern = null, ?array $flags = []): int;
}