profile.xml 575 B

123456789101112131415
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <routes xmlns="http://symfony.com/schema/routing"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://symfony.com/schema/routing http://symfony.com/schema/routing/routing-1.0.xsd">
  5. <route id="fos_user_profile_show" path="/" methods="GET">
  6. <default key="_controller">FOSUserBundle:Profile:show</default>
  7. </route>
  8. <route id="fos_user_profile_edit" path="/edit" methods="GET POST">
  9. <default key="_controller">FOSUserBundle:Profile:edit</default>
  10. </route>
  11. </routes>