Add unit-id and bmc-reboot to navigation.
Change-Id: Idce6d77955cbcd348a3e0e8d0c6785ad983cfdc5
Signed-off-by: Iftekharul Islam <iislam@us.ibm.com>
diff --git a/src/js/controllers.js b/src/js/controllers.js
index a197ab2..854af78 100644
--- a/src/js/controllers.js
+++ b/src/js/controllers.js
@@ -25,6 +25,12 @@
.controller('systemOverviewController', ['$scope', 'dataService', function($scope, dataService){
$scope.dataService = dataService;
}])
+ .controller('unitIDController', ['$scope', 'dataService', function($scope, dataService){
+ $scope.dataService = dataService;
+ }])
+ .controller('bmcRebootController', ['$scope', 'dataService', function($scope, dataService){
+ $scope.dataService = dataService;
+ }])
.controller('powerOperationsController', ['$scope', 'APIUtils', 'dataService', function($scope, APIUtils, dataService){
$scope.dataService = dataService;
$scope.confirm = false;