blob: e7e5369b933eb3c8e3f68ff3f921dbac46c9d798 [file] [log] [blame]
/**
* A module for the configuration
*
* @module app/configuration/index
* @exports app/configuration/index
*/
window.angular && (function(angular) {
'use strict';
angular
.module('app.configuration', ['ngRoute', 'app.common.services'])
// Route configuration
.config([
'$routeProvider',
function($routeProvider) {
$routeProvider
.when('/configuration/network', {
'template': require('./controllers/network-controller.html'),
'controller': 'networkController',
authenticated: true
})
.when('/configuration/date-time', {
'template': require('./controllers/date-time-controller.html'),
'controller': 'dateTimeController',
authenticated: true
})
.when('/configuration', {
'template': require('./controllers/network-controller.html'),
'controller': 'networkController',
authenticated: true
})
.when('/configuration/snmp', {
'template': require('./controllers/snmp-controller.html'),
'controller': 'snmpController',
authenticated: true
})
.when('/configuration/certificate', {
'template':
require('./controllers/certificate-controller.html'),
'controller': 'certificateController',
authenticated: true
})
.when('/configuration/firmware', {
'template': require('./controllers/firmware-controller.html'),
'controller': 'firmwareController',
authenticated: true
});
}
]);
})(window.angular);