fixed url redirection

This commit is contained in:
David Baldwynn 2016-04-22 17:28:25 -04:00
parent c8d100911e
commit 74e4a863fa

View file

@ -4,6 +4,6 @@
angular.module('core').config(['$stateProvider', '$urlRouterProvider',
function($stateProvider, $urlRouterProvider, Authorization) {
// Redirect to home view when route not found
$urlRouterProvider.otherwise('/#!/forms');
$urlRouterProvider.otherwise('/forms');
}
]);