blob: c1046029fbae8bb8dd7a4850abcbfb8939882375 [file] [log] [blame]
Ed Tanousc4771fb2017-03-13 13:39:49 -07001angular.module('bmcApp').controller('versionController', function($scope, $resource) {
Ed Tanous904063f2017-03-02 16:48:24 -08002
Ed Tanousc4771fb2017-03-13 13:39:49 -07003
4 var systeminfo = $resource("/systeminfo");
5 systeminfo.get(function(systeminfo){
6 $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 });
16
Ed Tanousc4771fb2017-03-13 13:39:49 -070017
18
Ed Tanous904063f2017-03-02 16:48:24 -080019});