From 22d4d527af48d87ca70a8766bacc5b1ec0cfe9b7 Mon Sep 17 00:00:00 2001 From: Yoshie Muranaka Date: Thu, 3 Dec 2020 10:58:35 -0800 Subject: Add dumps page to IBM env Adds a non-functional dumps page with majority of layout and user flows in place. Page visible with IBM dotenv configurations. Includes: - Initial GET for BMC dumps - Table search, sort, filter, batch and row action flows - New dump form, validations, and toast notification Signed-off-by: Yoshie Muranaka Change-Id: Id59ec4327744f4e10cc99e4e3c0b2db5b0476f9c --- src/env/router/ibm.js | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src/env/router/ibm.js') diff --git a/src/env/router/ibm.js b/src/env/router/ibm.js index a6473720..d4a6de0c 100644 --- a/src/env/router/ibm.js +++ b/src/env/router/ibm.js @@ -24,6 +24,7 @@ import i18n from '@/i18n'; // Custom components import FirmwareSingleImage from '../components/FirmwareSingleImage'; +import Dumps from '../components/Dumps'; const routes = [ { @@ -89,6 +90,14 @@ const routes = [ title: i18n.t('appPageTitle.profileSettings'), }, }, + { + path: '/health/dumps', + name: 'dumps', + component: Dumps, + meta: { + title: i18n.t('appPageTitle.dumps'), + }, + }, { path: '/health/event-logs', name: 'event-logs', -- cgit v1.2.3