From c2fa1b7e8d43a236219d1f6ad2831de1af296cb4 Mon Sep 17 00:00:00 2001 From: aribeiro Date: Thu, 13 Jan 2022 14:33:25 +0000 Subject: View Interface definition on VFC Add Interface support to VFC view UI Issue-ID: SDC-3850 Signed-off-by: aribeiro Change-Id: Icd195c939af39d40ae8c617e740323dd3e70fc15 --- catalog-ui/src/app/app.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'catalog-ui/src/app/app.ts') diff --git a/catalog-ui/src/app/app.ts b/catalog-ui/src/app/app.ts index 87930fd12e..ffa43895a7 100644 --- a/catalog-ui/src/app/app.ts +++ b/catalog-ui/src/app/app.ts @@ -511,6 +511,18 @@ ng1appModule.config([ } ); + $stateProvider.state( + States.WORKSPACE_INTERFACE_DEFINITION, { + url: 'interfaceDefinition', + parent: 'workspace', + controller: viewModelsModuleName + '.InterfaceDefinitionViewModel', + templateUrl: './view-models/workspace/tabs/interface-definition/interface-definition-view.html', + data: { + bodyClass: 'interfaceDefinition' + } + } + ); + $stateProvider.state( 'workspace.plugins', { url: 'plugins/*path', -- cgit 1.2.3-korg