Skip to content

Commit

Permalink
segment key under categories in LeadBundle config file
Browse files Browse the repository at this point in the history
  • Loading branch information
bkomel committed Dec 29, 2020
1 parent d3bfa90 commit a1fc189
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions app/bundles/LeadBundle/Config/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -317,6 +317,9 @@
],
],
],
'categories' => [
'segment' => null,
],
'services' => [
'events' => [
'mautic.lead.subscriber' => [
Expand Down Expand Up @@ -1040,6 +1043,7 @@
'mautic.lead.model.list' => [
'class' => \Mautic\LeadBundle\Model\ListModel::class,
'arguments' => [
'mautic.category.model.category',
'mautic.helper.core_parameters',
'mautic.lead.model.lead_segment_service',
'mautic.lead.segment.stat.chart.query.factory',
Expand Down Expand Up @@ -1299,6 +1303,16 @@
'tag' => \Doctrine\Bundle\FixturesBundle\DependencyInjection\CompilerPass\FixturesCompilerPass::FIXTURE_TAG,
'arguments' => ['mautic.lead.model.list'],
],
'mautic.lead.fixture.category' => [
'class' => \Mautic\LeadBundle\DataFixtures\ORM\LoadCategoryData::class,
'tag' => \Doctrine\Bundle\FixturesBundle\DependencyInjection\CompilerPass\FixturesCompilerPass::FIXTURE_TAG,
'arguments' => ['doctrine.orm.entity_manager'],
],
'mautic.lead.fixture.categorizedleadlists' => [
'class' => \Mautic\LeadBundle\DataFixtures\ORM\LoadCategorizedLeadListData::class,
'tag' => \Doctrine\Bundle\FixturesBundle\DependencyInjection\CompilerPass\FixturesCompilerPass::FIXTURE_TAG,
'arguments' => ['doctrine.orm.entity_manager'],
],
'mautic.lead.fixture.test.page_hit' => [
'class' => \Mautic\LeadBundle\Tests\DataFixtures\ORM\LoadPageHitData::class,
'tag' => \Doctrine\Bundle\FixturesBundle\DependencyInjection\CompilerPass\FixturesCompilerPass::FIXTURE_TAG,
Expand Down

0 comments on commit a1fc189

Please sign in to comment.