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