<?xml version="1.0" encoding="UTF-8" ?>

<routes xmlns="http://friendsofsymfony.github.com/schema/rest"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://friendsofsymfony.github.com/schema/rest http://friendsofsymfony.github.com/schema/rest/routing-1.0.xsd">

    <import
        id="users"
        type="rest"
        prefix="/resources/all"
        resource="FOS\RestBundle\Tests\Fixtures\Controller\UsersController" />

    <import
        id="user_topics"
        type="rest"
        parent="users"
        resource="FOS\RestBundle\Tests\Fixtures\Controller\UserTopicsController" />

    <import
        id="user_topic_comments"
        type="rest"
        prefix="/additional"
        parent="user_topics"
        name-prefix="test_"
        resource="FOS\RestBundle\Tests\Fixtures\Controller\UserTopicCommentsController" />

</routes>
