blob: b4182955edb312023a140353f2cdb5422c9a81e7 [file] [log] [blame]
Iftekharul Islamcd789502017-04-19 14:37:55 -05001/**
2 * A module for the configuration
3 *
4 * @module app/configuration/index
5 * @exports app/configuration/index
Iftekharul Islamcd789502017-04-19 14:37:55 -05006 */
7
Andrew Geisslerba5e3f32018-05-24 10:58:00 -07008window.angular && (function(angular) {
9 'use strict';
Iftekharul Islamcd789502017-04-19 14:37:55 -050010
Andrew Geisslerba5e3f32018-05-24 10:58:00 -070011 angular
Gunnar Mills2b9a0d92018-07-11 15:10:08 -050012 .module('app.configuration', ['ngRoute', 'app.common.services'])
Andrew Geisslerd27bb132018-05-24 11:07:27 -070013 // Route configuration
14 .config([
15 '$routeProvider',
16 function($routeProvider) {
17 $routeProvider
18 .when('/configuration/network', {
19 'template': require('./controllers/network-controller.html'),
20 'controller': 'networkController',
21 authenticated: true
22 })
Andrew Geisslerd27bb132018-05-24 11:07:27 -070023 .when('/configuration/date-time', {
24 'template': require('./controllers/date-time-controller.html'),
25 'controller': 'dateTimeController',
26 authenticated: true
27 })
Andrew Geisslerd27bb132018-05-24 11:07:27 -070028 .when('/configuration', {
29 'template': require('./controllers/network-controller.html'),
30 'controller': 'networkController',
31 authenticated: true
32 })
Gunnar Millsff64c542018-08-24 15:49:09 -050033 .when('/configuration/snmp', {
34 'template': require('./controllers/snmp-controller.html'),
35 'controller': 'snmpController',
36 authenticated: true
37 })
Andrew Geisslerd27bb132018-05-24 11:07:27 -070038 .when('/configuration/firmware', {
39 'template': require('./controllers/firmware-controller.html'),
40 'controller': 'firmwareController',
41 authenticated: true
42 });
43 }
44 ]);
Iftekharul Islamcd789502017-04-19 14:37:55 -050045})(window.angular);