Skip to content

Commit

Permalink
Merge pull request #80 from SURFnet/bugfix/gssf-vetting-service
Browse files Browse the repository at this point in the history
Make vetting service available in GssfController
  • Loading branch information
rjkip committed Jun 10, 2015
2 parents 071ab52 + 9e1dfe0 commit d0da1cd
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
use Surfnet\SamlBundle\SAML2\AuthnRequestFactory;
use Surfnet\SamlBundle\SAML2\Response\Assertion\InResponseTo;
use Surfnet\StepupRa\RaBundle\Exception\RuntimeException;
use Surfnet\StepupRa\RaBundle\Service\VettingService;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
Expand Down Expand Up @@ -226,4 +227,12 @@ private function getLogger()
{
return $this->get('logger');
}

/**
* @return VettingService
*/
private function getVettingService()
{
return $this->get('ra.service.vetting');
}
}

0 comments on commit d0da1cd

Please sign in to comment.