1
0

fixed bug in core.routes.js

This commit is contained in:
David Baldwynn 2017-11-05 19:23:01 -05:00
parent 4c76e37aba
commit 3dc51d9d2c

View File

@ -2,7 +2,7 @@
// Setting up route
angular.module('core').config(['$stateProvider', '$urlRouterProvider',
function($stateProvider, $urlRouterProvider, Authorization) {
function($stateProvider, $urlRouterProvider) {
// Redirect to home view when route not found
$urlRouterProvider.otherwise('/forms');
}