summaryrefslogtreecommitdiff
path: root/src/router
diff options
context:
space:
mode:
authorYoshie Muranaka <yoshiemuranaka@gmail.com>2020-03-11 22:44:24 +0300
committerYoshie Muranaka <yoshiemuranaka@gmail.com>2020-03-26 00:30:01 +0300
commit30abccbed83aee950016c2da0ae5bf512df769dc (patch)
tree6444a2695de5a4b39c4c64fcfa279beaa990033c /src/router
parent5f263e8f47068b802252af36b36f6c6939a4dc81 (diff)
downloadwebui-vue-30abccbed83aee950016c2da0ae5bf512df769dc.tar.xz
Add Sensors page
- Update api calls to use Redfish - Add column sort to name and status columns - Set default table sort to status column - Added lodash package Github story: https://github.com/openbmc/webui-vue/issues/4 Signed-off-by: Yoshie Muranaka <yoshiemuranaka@gmail.com> Change-Id: Ic6e76107475fbf5fb34deb01a4de4a4a9ccfeabf
Diffstat (limited to 'src/router')
-rw-r--r--src/router/index.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/router/index.js b/src/router/index.js
index 0d246cda..cd6cf8bf 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -24,6 +24,13 @@ const routes = [
}
},
{
+ path: '/health/sensors',
+ component: () => import('@/views/Health/Sensors'),
+ meta: {
+ title: 'appPageTitle.sensors'
+ }
+ },
+ {
path: '/access-control/local-user-management',
name: 'local-users',
component: () => import('@/views/AccessControl/LocalUserManagement'),