Skip to content

Commit

Permalink
added SfH for patrols
Browse files Browse the repository at this point in the history
  • Loading branch information
Lung committed Aug 1, 2024
1 parent 18d2ac0 commit 479d2b2
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/Event/EventType/Cej/EventTypeCej.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
use kissj\Participant\Ist\Ist;
use kissj\Participant\Participant;
use kissj\Participant\Patrol\PatrolLeader;
use kissj\Participant\Patrol\PatrolParticipant;
use kissj\Payment\Payment;

class EventTypeCej extends EventType
Expand Down Expand Up @@ -288,6 +289,11 @@ public function getEventDeals(Participant $participant): array
$participant->tieCode,
),
);
} elseif ($participant instanceof PatrolLeader || $participant instanceof PatrolParticipant) {
$eventDeals[] = new EventDeal(
self::SLUG_SFH,
'https://docs.google.com/forms/d/18TEPrRNzeS9JLxEf3SLuJte8do99_aM-ATOxccHTBpE/edit'
);
}

return $eventDeals;
Expand Down

0 comments on commit 479d2b2

Please sign in to comment.