20 lines
797 B
XML
20 lines
797 B
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
|
|
<routes xmlns="http://symfony.com/schema/routing"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://symfony.com/schema/routing http://symfony.com/schema/routing/routing-1.0.xsd">
|
|
|
|
<route id="fos_user_security_login" path="/login" methods="GET POST">
|
|
<default key="_controller">fos_user.security.controller:loginAction</default>
|
|
</route>
|
|
|
|
<route id="fos_user_security_check" path="/login_check" methods="POST">
|
|
<default key="_controller">fos_user.security.controller:checkAction</default>
|
|
</route>
|
|
|
|
<route id="fos_user_security_logout" path="/logout" methods="GET POST">
|
|
<default key="_controller">fos_user.security.controller:logoutAction</default>
|
|
</route>
|
|
|
|
</routes>
|