blob: 9afaed63c4a29d127d636e8e7fc4acb512b0985d [file] [log] [blame]
Iftekharul Islam08054412017-08-25 10:29:57 -05001/**
2 * A module for the multi-server
3 *
4 * @module app/multi-server
5 * @exports app/multi-server
6 * @version 0.0.1
7 */
8
9window.angular && (function (angular) {
10 'use strict';
11
12 angular
13 .module('app.multiServer', [
14 'ngRoute',
15 'app.constants',
16 'app.common.services'
17 ])
18 // Route configuration
19 .config(['$routeProvider', function ($routeProvider) {
20 $routeProvider
21 .when('/multi-server/overview', {
Ed Tanousbbcf6702017-10-06 13:53:06 -070022 'template': require('./controllers/multi-server-controller.html'),
Iftekharul Islam08054412017-08-25 10:29:57 -050023 'controller': 'multiServerController',
24 authenticated: true
25 });
26 }]);
27
28})(window.angular);