Skip to content

Commit

Permalink
ApplicationProcessNotificationSubscriber: Fix token context
Browse files Browse the repository at this point in the history
  • Loading branch information
Dominic Tubach committed Feb 14, 2025
1 parent 4fc0684 commit a3f4b87
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public function onCreated(ApplicationProcessCreatedEvent $event): void {
'application_process.status_change:' . $event->getApplicationProcess()->getStatus(),
$event->getFundingCase(),
[
'applicationProcess' => $event->getApplicationProcess(),
'fundingApplicationProcess' => $event->getApplicationProcess(),
'fundingProgram' => $event->getFundingProgram(),
]
);
Expand All @@ -65,7 +65,7 @@ public function onUpdated(ApplicationProcessUpdatedEvent $event): void {
'application_process.status_change:' . $event->getApplicationProcess()->getStatus(),
$event->getFundingCase(),
[
'applicationProcess' => $event->getApplicationProcess(),
'fundingApplicationProcess' => $event->getApplicationProcess(),
'fundingProgram' => $event->getFundingProgram(),
]
);
Expand Down

0 comments on commit a3f4b87

Please sign in to comment.