blob: 3eda37b9b4125b65aaa87ddde33132799c4344ce [file] [log] [blame]
Michael Davis994a93b2017-04-18 10:01:04 -05001/**
Iftekharul Islamcd789502017-04-19 14:37:55 -05002 * Controller for server
Michael Davis994a93b2017-04-18 10:01:04 -05003 *
Iftekharul Islamcd789502017-04-19 14:37:55 -05004 * @module app/serverHealth
5 * @exports inventoryOverviewController
6 * @name inventoryOverviewController
Michael Davis994a93b2017-04-18 10:01:04 -05007 * @version 0.1.0
8 */
9
10window.angular && (function (angular) {
11 'use strict';
12
13 angular
Iftekharul Islamcd789502017-04-19 14:37:55 -050014 .module('app.serverHealth')
Michael Davis994a93b2017-04-18 10:01:04 -050015 .controller('inventoryOverviewController', [
16 '$scope',
17 '$window',
18 'APIUtils',
19 'dataService',
Iftekharul Islamcd789502017-04-19 14:37:55 -050020 function($scope, $window, APIUtils, dataService){
Michael Davis994a93b2017-04-18 10:01:04 -050021 $scope.dataService = dataService;
Michael Davis994a93b2017-04-18 10:01:04 -050022 }
23 ]
24 );
25
26})(angular);