Skip to content

Commit

Permalink
Merge pull request #21 from NoScopie/patch-1
Browse files Browse the repository at this point in the history
Update DefaultController.php template files so they can be overridden
  • Loading branch information
tmilos committed May 19, 2016
2 parents f89b0ff + 0be3590 commit c4b1765
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/LightSaml/SpBundle/Controller/DefaultController.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public function discoveryAction()
return $this->redirectToRoute('lightsaml_sp.login', ['idp' => $parties[0]->getEntityID()]);
}

return $this->render('@LightSamlSp/discovery.html.twig', [
return $this->render('LightSamlSpBundle::discovery.html.twig', [
'parties' => $parties,
]);
}
Expand All @@ -60,7 +60,7 @@ public function sessionsAction()
{
$ssoState = $this->get('lightsaml.container.build')->getStoreContainer()->getSsoStateStore()->get();

return $this->render('@LightSamlSp/sessions.html.twig', [
return $this->render('LightSamlSpBundle::sessions.html.twig', [
'sessions' => $ssoState->getSsoSessions(),
]);
}
Expand Down

0 comments on commit c4b1765

Please sign in to comment.