Source: components/resposta_briefing/resposta_briefing.js

/**
 * @ngdoc resposta_briefing
 * @name RespostaBriefing
 * @module s4c.components.resposta_briefing.RespostaBriefing
 *
 * @description Configura a rota para o módulo Respostas para o Briefing
 * 
 * 
 */
(function () {
    'use strict';

    angular.module('s4CApp')
        .config(['$stateProvider',
            function ($stateProvider) {
                $stateProvider
                    .state('resposta_briefing', {
                        url: '/resposta_briefing/:id',
                        templateUrl: 'app/components/resposta_briefing/resposta_briefing.html',
                        controller: 'RespostaBriefingCtrl'
                    });
            }
        ]);
}());