Actualización

This commit is contained in:
Xes
2025-04-10 12:24:57 +02:00
parent 8969cc929d
commit 45420b6f0d
39760 changed files with 4303286 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
<?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">
<import
resource="@FOSUserBundle/Resources/config/routing/security.xml" />
<import
resource="@FOSUserBundle/Resources/config/routing/profile.xml"
prefix="/profile" />
<import
resource="@FOSUserBundle/Resources/config/routing/registration.xml"
prefix="/register" />
<import
resource="@FOSUserBundle/Resources/config/routing/resetting.xml"
prefix="/resetting" />
<import
resource="@FOSUserBundle/Resources/config/routing/change_password.xml"
prefix="/profile" />
</routes>

View File

@@ -0,0 +1,11 @@
<?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_change_password" path="/change-password" methods="GET POST">
<default key="_controller">fos_user.change_password.controller:changePasswordAction</default>
</route>
</routes>

View File

@@ -0,0 +1,27 @@
<?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_group_list" path="/list" methods="GET">
<default key="_controller">fos_user.group.controller:listAction</default>
</route>
<route id="fos_user_group_new" path="/new" methods="GET POST">
<default key="_controller">fos_user.group.controller:newAction</default>
</route>
<route id="fos_user_group_show" path="/{groupName}" methods="GET">
<default key="_controller">fos_user.group.controller:showAction</default>
</route>
<route id="fos_user_group_edit" path="/{groupName}/edit" methods="GET POST">
<default key="_controller">fos_user.group.controller:editAction</default>
</route>
<route id="fos_user_group_delete" path="/{groupName}/delete" methods="GET">
<default key="_controller">fos_user.group.controller:deleteAction</default>
</route>
</routes>

View File

@@ -0,0 +1,15 @@
<?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_profile_show" path="/" methods="GET">
<default key="_controller">fos_user.profile.controller:showAction</default>
</route>
<route id="fos_user_profile_edit" path="/edit" methods="GET POST">
<default key="_controller">fos_user.profile.controller:editAction</default>
</route>
</routes>

View File

@@ -0,0 +1,23 @@
<?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_registration_register" path="/" methods="GET POST">
<default key="_controller">fos_user.registration.controller:registerAction</default>
</route>
<route id="fos_user_registration_check_email" path="/check-email" methods="GET">
<default key="_controller">fos_user.registration.controller:checkEmailAction</default>
</route>
<route id="fos_user_registration_confirm" path="/confirm/{token}" methods="GET">
<default key="_controller">fos_user.registration.controller:confirmAction</default>
</route>
<route id="fos_user_registration_confirmed" path="/confirmed" methods="GET">
<default key="_controller">fos_user.registration.controller:confirmedAction</default>
</route>
</routes>

View File

@@ -0,0 +1,23 @@
<?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_resetting_request" path="/request" methods="GET">
<default key="_controller">fos_user.resetting.controller:requestAction</default>
</route>
<route id="fos_user_resetting_send_email" path="/send-email" methods="POST">
<default key="_controller">fos_user.resetting.controller:sendEmailAction</default>
</route>
<route id="fos_user_resetting_check_email" path="/check-email" methods="GET">
<default key="_controller">fos_user.resetting.controller:checkEmailAction</default>
</route>
<route id="fos_user_resetting_reset" path="/reset/{token}" methods="GET POST">
<default key="_controller">fos_user.resetting.controller:resetAction</default>
</route>
</routes>

View File

@@ -0,0 +1,19 @@
<?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>