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/app.js b/src/js/app.js
index 6469860..857c9af 100644
--- a/src/js/app.js
+++ b/src/js/app.js
@@ -24,6 +24,16 @@
'templateUrl': 'system-overview.html',
'controller': 'systemOverviewController'
})
+ .when('/unit-id', {
+ 'templateUrl': 'unit-id.html',
+ 'controller': 'unitIDController',
+ authenticated: true
+ })
+ .when('/bmc-reboot', {
+ 'templateUrl': 'bmc-reboot.html',
+ 'controller': 'bmcRebootController',
+ authenticated: true
+ })
.otherwise({
'redirectTo': '/login'
});