Skip to content

Commit

Permalink
added SfH deal for SK CEJ 2024
Browse files Browse the repository at this point in the history
  • Loading branch information
Lung committed Jul 8, 2024
1 parent 7437b0a commit 2f334b9
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions src/Event/EventType/Cej/EventTypeCej.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

namespace kissj\Event\EventType\Cej;

use kissj\Deal\EventDeal;
use kissj\Event\ContentArbiterIst;
use kissj\Event\ContentArbiterPatrolLeader;
use kissj\Event\ContentArbiterPatrolParticipant;
Expand Down Expand Up @@ -273,4 +274,22 @@ public function getSkautStampSignPath(Participant $participant): string
default => '/SkSkautingSignStamp.png',
};
}

#[\Override]
public function getEventDeals(Participant $participant): array
{
$eventDeals = [];

if ($participant instanceof Ist) {
$eventDeals[] = new EventDeal(
self::SLUG_SFH,
sprintf(
'https://docs.google.com/forms/d/e/1FAIpQLSe3FPRiN7o9nupa-sLs0w6xf6IFFEW5kJVMJSPSExfHn0qCtw/viewform?usp=pp_url&entry.499691302=%s',
$participant->tieCode,
),
);
}

return $eventDeals;
}
}

0 comments on commit 2f334b9

Please sign in to comment.