<?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_attendee" path="/signup/attendee" methods="GET POST">
        <default key="_controller">App\Controller\bundles\FOSUserBundle\RegistrationController::registerAttendeeAction</default>
    </route>

    <route id="fos_user_registration_register_organizer" path="/signup/organizer" methods="GET POST">
        <default key="_controller">App\Controller\bundles\FOSUserBundle\RegistrationController::registerOrganizerAction</default>
    </route>

    <route id="fos_user_registration_check_email" path="/signup/check-email" methods="GET">
        <default key="_controller">App\Controller\bundles\FOSUserBundle\RegistrationController::checkEmailAction</default>
    </route>

    <route id="fos_user_registration_confirm" path="/signup/confirm/{token}" methods="GET">
        <default key="_controller">fos_user.registration.controller:confirmAction</default>
    </route>

    <route id="fos_user_registration_confirmed" path="/signup/confirmed" methods="GET">
        <default key="_controller">fos_user.registration.controller:confirmedAction</default>
    </route>

</routes>
