index.js (418db63c77aad03fe3401c7acd9f9792fab96a68) index.js (5e258e43070b46b9d1ec5ec01e02b9f707cbf7b8)
1/**
2 * A module for the configuration
3 *
4 * @module app/configuration/index
5 * @exports app/configuration/index
6 */
7
8window.angular && (function(angular) {

--- 27 unchanged lines hidden (view full) ---

36 authenticated: true
37 })
38 .when('/configuration/certificate', {
39 'template':
40 require('./controllers/certificate-controller.html'),
41 'controller': 'certificateController',
42 authenticated: true
43 })
1/**
2 * A module for the configuration
3 *
4 * @module app/configuration/index
5 * @exports app/configuration/index
6 */
7
8window.angular && (function(angular) {

--- 27 unchanged lines hidden (view full) ---

36 authenticated: true
37 })
38 .when('/configuration/certificate', {
39 'template':
40 require('./controllers/certificate-controller.html'),
41 'controller': 'certificateController',
42 authenticated: true
43 })
44 .when('/configuration/ldap', {
45 'template': require('./controllers/ldap-controller.html'),
46 'controller': 'ldapController',
47 authenticated: true
48 })
44 .when('/configuration/firmware', {
45 'template': require('./controllers/firmware-controller.html'),
46 'controller': 'firmwareController',
47 authenticated: true
48 });
49 }
50 ]);
51})(window.angular);
49 .when('/configuration/firmware', {
50 'template': require('./controllers/firmware-controller.html'),
51 'controller': 'firmwareController',
52 authenticated: true
53 });
54 }
55 ]);
56})(window.angular);