From 3b938eb9abf38f969d80af31942810959d0602e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Mon, 27 Nov 2023 13:24:34 +0100 Subject: [PATCH] activate bundle event in app --- config/bundles.php | 1 + config/packages/doctrine_migrations.yaml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/config/bundles.php b/config/bundles.php index a0c6329..8b6aed6 100644 --- a/config/bundles.php +++ b/config/bundles.php @@ -36,4 +36,5 @@ return [ App\App::class => ['all' => true], KnpU\OAuth2ClientBundle\KnpUOAuth2ClientBundle::class => ['all' => true], Lexik\Bundle\JWTAuthenticationBundle\LexikJWTAuthenticationBundle::class => ['all' => true], + Chill\EventBundle\ChillEventBundle::class => ['all' => true], ]; diff --git a/config/packages/doctrine_migrations.yaml b/config/packages/doctrine_migrations.yaml index b6bd168..cfc56ba 100644 --- a/config/packages/doctrine_migrations.yaml +++ b/config/packages/doctrine_migrations.yaml @@ -7,7 +7,7 @@ doctrine_migrations: 'Chill\Migrations\Activity': '@ChillActivityBundle/migrations' 'Chill\Migrations\DocStore': '@ChillDocStoreBundle/migrations' 'Chill\Migrations\CustomFields': '@ChillCustomFieldsBundle/migrations' - # 'Chill\Migrations\Event': '@ChillEventBundle/migrations' + 'Chill\Migrations\Event': '@ChillEventBundle/migrations' 'Chill\Migrations\Person': '@ChillPersonBundle/migrations' 'Chill\Migrations\Task': '@ChillTaskBundle/migrations' 'Chill\Migrations\ThirdParty': '@ChillThirdPartyBundle/migrations'