tellform/public/modules/core/config/core.client.routes.js

26 lines
618 B
JavaScript
Raw Normal View History

2015-06-29 22:51:29 +00:00
'use strict';
// Setting up route
angular.module('core').config(['$stateProvider', '$urlRouterProvider',
function($stateProvider, $urlRouterProvider, Authorization) {
// Redirect to home view when route not found
$urlRouterProvider.otherwise('/');
// Home state routing
$stateProvider.
state('home', {
url: '/',
templateUrl: 'modules/core/views/home.client.view.html'
});
2015-06-30 06:12:32 +00:00
// state('restricted', {
// 'abstract': true,
// resolve: {
// authorize: ['Authorization',
// function(Authorization) {
// return Authorization.authorize();
// }
// ]
// }
// });
2015-06-29 22:51:29 +00:00
}
]);