WIP: render entities

This commit is contained in:
2026-02-13 19:22:08 +01:00
parent 32c5f21438
commit 22ace0c66e
20 changed files with 337 additions and 0 deletions

View File

@@ -12,6 +12,7 @@ declare(strict_types=1);
namespace Chill\MainBundle;
use Chill\MainBundle\Audit\SubjectConverterInterface;
use Chill\MainBundle\Audit\SubjectDisplayerInterface;
use Chill\MainBundle\Cron\CronJobInterface;
use Chill\MainBundle\CRUD\CompilerPass\CRUDControllerCompilerPass;
use Chill\MainBundle\DependencyInjection\CompilerPass\ACLFlagsCompilerPass;
@@ -67,6 +68,8 @@ class ChillMainBundle extends Bundle
->addTag('chill_main.notification_flag_provider');
$container->registerForAutoconfiguration(SubjectConverterInterface::class)
->addTag('chill_main.audit_subject_converter');
$container->registerForAutoconfiguration(SubjectDisplayerInterface::class)
->addTag('chill_main.audit_subject_displayer');
$container->addCompilerPass(new SearchableServicesCompilerPass(), \Symfony\Component\DependencyInjection\Compiler\PassConfig::TYPE_BEFORE_OPTIMIZATION, 0);
$container->addCompilerPass(new ConfigConsistencyCompilerPass(), \Symfony\Component\DependencyInjection\Compiler\PassConfig::TYPE_BEFORE_OPTIMIZATION, 0);