blob: 65d9f492dce6cb80be37a618eba941815b473032 [file] [log] [blame]
Ed Tanous1ccd57c2017-03-21 13:15:58 -07001angular.module('bmcApp').controller('versionController', [
2 '$scope', '$resource',
3 function($scope, $resource) {
Ed Tanous904063f2017-03-02 16:48:24 -08004
Ed Tanousc4771fb2017-03-13 13:39:49 -07005
6 var systeminfo = $resource("/systeminfo");
7 systeminfo.get(function(systeminfo){
8 $scope.host_power_on= true;
9 $scope.rmm_module_installed= true;
10 $scope.bmc_available= true;
11 $scope.bmc_build_date= new Date(2016, 0, 1, 2, 3, 4, 567);
12 $scope.bios_build_number = "D0191";
13 $scope.bmc_build_number = "96.37";
14 $scope.bmc_build_extended = "e04989f7";
15 $scope.bmc_backup_build_number = "96.37";
16 $scope.bmc_backup_build_extended = "e04989f7";
Ed Tanous904063f2017-03-02 16:48:24 -080017 });
18
Ed Tanousc4771fb2017-03-13 13:39:49 -070019
20
Ed Tanous1ccd57c2017-03-21 13:15:58 -070021}]);