blob: 81c357db201dd1f8935f568fc4aaedcd91536f6e [file] [log] [blame]
/**
* A module for the overview
*
* @module app/overview/index
* @exports app/overview/index
*/
window.angular && (function(angular) {
'use strict';
angular
.module(
'app.overview', ['ngRoute', 'app.constants', 'app.common.services'])
// Route configuration
.config([
'$routeProvider',
function($routeProvider) {
$routeProvider
.when('/overview/server', {
'template':
require('./controllers/system-overview-controller.html'),
'controller': 'systemOverviewController',
authenticated: true
})
.when('/overview', {
'template':
require('./controllers/system-overview-controller.html'),
'controller': 'systemOverviewController',
authenticated: true
});
}
]);
})(window.angular);