You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
388 B

  1. 'use strict';
  2. // Declare app level module which depends on views, and components
  3. angular.module('adminApp', [
  4. 'ngRoute',
  5. 'ngMessages',
  6. 'angularBootstrapMaterial',
  7. 'app.main',
  8. 'app.user'
  9. ]).
  10. config(['$locationProvider', '$routeProvider', function($locationProvider, $routeProvider) {
  11. $locationProvider.hashPrefix('!');
  12. $routeProvider.otherwise({redirectTo: '/main'});
  13. }]);