summaryrefslogtreecommitdiff
path: root/src/router
diff options
context:
space:
mode:
authorMateusz Gapski <mateuszx.gapski@intel.com>2020-07-30 12:01:29 +0300
committerDerick Montague <derick.montague@ibm.com>2020-08-28 22:59:16 +0300
commit75100469ab66851d84082b9651469901136f3d7e (patch)
tree68b0ad9e137b59c49eead11725dab773b0c4e80b /src/router
parent21d6de005f8e6cbf3a9dcbf02b604b6359e2ac00 (diff)
downloadwebui-vue-75100469ab66851d84082b9651469901136f3d7e.tar.xz
Add VirtualMedia page
More info: https://github.com/openbmc/webui-vue/issues/7 Signed-off-by: Mateusz Gapski <mateuszx.gapski@intel.com> Change-Id: I68f2074e77301c68c425f1e661988c751224b713
Diffstat (limited to 'src/router')
-rw-r--r--src/router/index.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/router/index.js b/src/router/index.js
index d3bf742d..5db985cd 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -176,6 +176,14 @@ const routes = [
}
},
{
+ path: '/control/virtual-media',
+ name: 'virtual-media',
+ component: () => import('@/views/Control/VirtualMedia'),
+ meta: {
+ title: 'appPageTitle.virtualMedia'
+ }
+ },
+ {
path: '/unauthorized',
name: 'unauthorized',
component: Unauthorized,