summaryrefslogtreecommitdiffstats
path: root/app/overview/controllers/bmc-reboot-controller.js
blob: 040b4444c5e7feaa0d72b1869a2ebda2844a4040 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/**
 * Controller for bmc-reboot
 *
 * @module app/overview
 * @exports bmcRebootController
 * @name bmcRebootController
 * @version 0.1.0
 */

window.angular && (function (angular) {
    'use strict';

    angular
        .module('app.overview')
        .controller('bmcRebootController', [
            '$scope', 
            '$window', 
            'APIUtils', 
            'dataService',
            function($scope, $window, APIUtils, dataService, userModel){
                $scope.dataService = dataService;
            }
        ]
    );

})(angular);
OpenPOWER on IntegriCloud