Skip to content

Commit

Permalink
Merge pull request #285 from RedeMapas/feature/config-cards-opportunity
Browse files Browse the repository at this point in the history
feat: adiciona configurações cards entidade oportunidades
  • Loading branch information
lpirola authored Jul 9, 2024
2 parents 619905c + cdeffe0 commit 234e23b
Showing 1 changed file with 34 additions and 1 deletion.
35 changes: 34 additions & 1 deletion config/Metabase.php
Original file line number Diff line number Diff line change
Expand Up @@ -240,8 +240,41 @@
],
]
],
[
'type' => 'opportunity',
'label' => 'Oportunidades',
'icon'=> 'opportunity',
'iconClass'=> 'opportunity__color',
'panelLink'=> 'painel-oportunidades',
'data'=> [
[
'icon'=> 'opportunity',
'label' => 'Oportunidades criadas',
'entity' => 'MapasCulturais\\Entities\\Opportunity',
'query' => [],
'value' => null
],
]
],
[
'type' => 'opportunity',
'label' => 'Oportunidades certificadas',
'icon'=> 'opportunity',
'iconClass'=> 'opportunity__color',
'panelLink'=> 'painel-oportunidades',
'data'=> [
[
'icon'=> 'opportunity',
'label' => 'Oportunidades certificadas',
'entity' => 'MapasCulturais\\Entities\\Opportunity',
'query'=> [
'@verified'=> 1
],
'value' => null
],
]
]
]

]
]
]
Expand Down

0 comments on commit 234e23b

Please sign in to comment.