Skip to content

Commit

Permalink
Set correct SelfVet ACS route
Browse files Browse the repository at this point in the history
The additional SelfVet namespace was not yet reflrected in the route
(forwar) name.

This was the only occurence where the SelfVetController is called by
name. There should not be other wrong calls in the project.

See: https://www.pivotaltracker.com/story/show/187412638
  • Loading branch information
MKodde committed Apr 16, 2024
1 parent 99afef4 commit ca52a06
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ public function consumeAssertion(Request $httpRequest): Response
$selfVetRequestId = $session->get(SelfVetController::SELF_VET_SESSION_ID);
$secondFactorId = $selfVetRequestId->vettingSecondFactorId();
return $this->forward(
'Surfnet\StepupSelfService\SelfServiceBundle\Controller\SelfVetController::consumeSelfVetAssertion',
'Surfnet\StepupSelfService\SelfServiceBundle\Controller\SelfVet\SelfVetConsumeController::consumeSelfVetAssertion',
['secondFactorId' => $secondFactorId],
);
}
Expand Down

0 comments on commit ca52a06

Please sign in to comment.