Create admin for motive

This commit is contained in:
2025-11-07 10:11:46 +00:00
committed by Julien Fastré
parent 1fc5530707
commit 51607572de
47 changed files with 1418 additions and 196 deletions

View File

@@ -20,4 +20,9 @@ use Doctrine\Persistence\ObjectRepository;
interface DocGeneratorTemplateRepositoryInterface extends ObjectRepository
{
public function countByEntity(string $entity): int;
/**
* @return array|DocGeneratorTemplate[]
*/
public function findByEntity(string $entity, ?int $start = 0, ?int $limit = 50): array;
}