Skip to content

Commit

Permalink
Update routing file.
Browse files Browse the repository at this point in the history
  • Loading branch information
drupol committed Jun 3, 2020
1 parent 1b9a4a1 commit bca8c68
Showing 1 changed file with 4 additions and 15 deletions.
19 changes: 4 additions & 15 deletions src/Resources/routing.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,8 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://symfony.com/schema/routing https://symfony.com/schema/routing/routing-1.0.xsd">

<route id="cas_bundle_homepage" path="/homepage">
<default key="_controller">EcPhp\CasBundle\Controller\Homepage::__invoke</default>
</route>

<route id="cas_bundle_login" path="/login">
<default key="_controller">EcPhp\CasBundle\Controller\Login::__invoke</default>
</route>

<route id="cas_bundle_logout" path="/logout">
<default key="_controller">EcPhp\CasBundle\Controller\Logout::__invoke</default>
</route>

<route id="cas_bundle_proxy_callback" path="/proxy/callback">
<default key="_controller">EcPhp\CasBundle\Controller\ProxyCallback::__invoke</default>
</route>
<route id="cas_bundle_homepage" path="/homepage" controller="EcPhp\CasBundle\Controller\Homepage"/>
<route id="cas_bundle_login" path="/login" controller="EcPhp\CasBundle\Controller\Login"/>
<route id="cas_bundle_logout" path="/logout" controller="EcPhp\CasBundle\Controller\Logout"/>
<route id="cas_bundle_proxy_callback" path="/proxy/callback" controller="EcPhp\CasBundle\Controller\ProxyCallback"/>
</routes>

0 comments on commit bca8c68

Please sign in to comment.