blob: 117be62306d6e621d4ae7291f4af8736dcce11d6 [file] [log] [blame]
Iftekharul Islamcd789502017-04-19 14:37:55 -05001/**
2 * A module for the serverHealth
3 *
4 * @module app/server-health/index
5 * @exports app/server-health/index
6 * @version 0.0.1
7 */
8
9window.angular && (function (angular) {
10 'use strict';
11
12 angular
13 .module('app.serverHealth', [
14 'ngRoute',
15 'app.constants',
16 'app.common.services'
17 ])
18 // Route configuration
19 .config(['$routeProvider', function ($routeProvider) {
20 $routeProvider
21 .when('/server-health/event-log', {
22 'templateUrl': 'server-health/controllers/log-controller.html',
23 'controller': 'logController',
24 authenticated: true
25 })
Michael Davisdf3bd122017-08-10 11:03:42 -050026 .when('/server-health/event-log/:type', {
27 'templateUrl': 'server-health/controllers/log-controller.html',
28 'controller': 'logController',
29 authenticated: true
30 })
Iftekharul Islam96bbf312017-08-22 13:44:38 -050031 .when('/server-health/event-log/:type/:id', {
32 'templateUrl': 'server-health/controllers/log-controller.html',
33 'controller': 'logController',
34 authenticated: true
35 })
Iftekharul Islamcd789502017-04-19 14:37:55 -050036 .when('/server-health/inventory-overview', {
37 'templateUrl': 'server-health/controllers/inventory-overview-controller.html',
38 'controller': 'inventoryOverviewController',
39 authenticated: true
40 })
41 .when('/server-health/inventory', {
42 'templateUrl': 'server-health/controllers/inventory-controller.html',
43 'controller': 'inventoryController',
44 authenticated: true
45 })
46 .when('/server-health/sensors-overview', {
47 'templateUrl': 'server-health/controllers/sensors-overview-controller.html',
48 'controller': 'sensorsOverviewController',
49 authenticated: true
50 })
Iftekharul Islamd2269e22017-05-02 09:32:45 -050051 .when('/server-health/sensors/:type', {
Iftekharul Islamcd789502017-04-19 14:37:55 -050052 'templateUrl': 'server-health/controllers/sensors-controller.html',
53 'controller': 'sensorsController',
54 authenticated: true
55 })
56 .when('/server-health/power-consumption', {
57 'templateUrl': 'server-health/controllers/power-consumption-controller.html',
58 'controller': 'powerConsumptionController',
59 authenticated: true
60 })
Iftekharul Islamcd789502017-04-19 14:37:55 -050061 .when('/server-health/diagnostics', {
62 'templateUrl': 'server-health/controllers/diagnostics-controller.html',
63 'controller': 'diagnosticsController',
64 authenticated: true
65 })
Iftekharul Islam8b4828a2017-04-19 14:37:55 -050066 .when('/server-health', {
67 'templateUrl': 'server-health/controllers/log-controller.html',
68 'controller': 'logController',
69 authenticated: true
70 });
Iftekharul Islamcd789502017-04-19 14:37:55 -050071 }]);
72
73})(window.angular);