Skip to content

Commit

Permalink
Merge pull request #1241 from csrdelft/voorkom-dies-ddos
Browse files Browse the repository at this point in the history
Voorkom Gala DDOS met standaard groepentab list ipv pasfoto's
  • Loading branch information
NathanHuisman authored Dec 16, 2024
2 parents af54447 + b226991 commit 67bdceb
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/view/groepen/GroepenView.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,13 @@
use CsrDelft\common\ContainerFacade;
use CsrDelft\common\Enum;
use CsrDelft\common\Security\Voter\Entity\Groep\AbstractGroepVoter;
use CsrDelft\entity\groepen\enum\ActiviteitSoort;
use CsrDelft\entity\groepen\enum\GroepTab;
use CsrDelft\entity\groepen\Groep;
use CsrDelft\entity\groepen\interfaces\HeeftSoort;
use CsrDelft\entity\security\enum\AccessAction;
use CsrDelft\repository\CmsPaginaRepository;
use CsrDelft\repository\groepen\ActiviteitenRepository;
use CsrDelft\repository\groepen\BesturenRepository;
use CsrDelft\repository\GroepRepository;
use CsrDelft\view\cms\CmsPaginaView;
Expand Down Expand Up @@ -48,7 +50,9 @@ public function __construct(
callable $urlGetter = null,
private $geschiedenis = false
) {
if ($this->model instanceof BesturenRepository) {
// HACK: Voorkom gala DDOS door dies-activiteiten standaard als lijst te laten zien ipv profielfoto's
if ($this->model instanceof BesturenRepository
|| ($this->model instanceof ActiviteitenRepository && $this->soort === ActiviteitSoort::Dies())) {
$this->tab = GroepTab::Lijst;
} else {
$this->tab = GroepTab::Pasfotos;
Expand Down

0 comments on commit 67bdceb

Please sign in to comment.