From 2203e84a0fd3308ce99e4de6ed2519e663008316 Mon Sep 17 00:00:00 2001 From: Ahmed Abbas Date: Mon, 24 Feb 2020 14:59:21 +0200 Subject: add single function to action and save it to frontend store. Issue-ID: CCSDK-2017 Signed-off-by: Ahmed Abbas Change-Id: I866eadb31bcb56aec5aa05a1dd4b0989c47c6210 --- .../packages/model/ModelType.model.ts | 12 --------- .../packages/model/designer-dashboard.state.ts | 29 ---------------------- 2 files changed, 41 deletions(-) delete mode 100644 cds-ui/designer-client/src/app/modules/feature-modules/packages/model/ModelType.model.ts delete mode 100644 cds-ui/designer-client/src/app/modules/feature-modules/packages/model/designer-dashboard.state.ts (limited to 'cds-ui/designer-client/src/app/modules/feature-modules/packages/model') diff --git a/cds-ui/designer-client/src/app/modules/feature-modules/packages/model/ModelType.model.ts b/cds-ui/designer-client/src/app/modules/feature-modules/packages/model/ModelType.model.ts deleted file mode 100644 index c8498fa36..000000000 --- a/cds-ui/designer-client/src/app/modules/feature-modules/packages/model/ModelType.model.ts +++ /dev/null @@ -1,12 +0,0 @@ -export class ModelType { - modelName: string; - derivedFrom: string; - definitionType: string; - definition: object; - description: string; - version: string; - tags: string; - creationDate: string; - updatedBy: string; - -} diff --git a/cds-ui/designer-client/src/app/modules/feature-modules/packages/model/designer-dashboard.state.ts b/cds-ui/designer-client/src/app/modules/feature-modules/packages/model/designer-dashboard.state.ts deleted file mode 100644 index dc65c009f..000000000 --- a/cds-ui/designer-client/src/app/modules/feature-modules/packages/model/designer-dashboard.state.ts +++ /dev/null @@ -1,29 +0,0 @@ -/* -============LICENSE_START========================================== -=================================================================== -Copyright (C) 2019 Orange. All rights reserved. -=================================================================== - -Unless otherwise specified, all software contained herein is licensed -under the Apache License, Version 2.0 (the License); -you may not use this software except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. -============LICENSE_END============================================ -*/ - -import {ModelType} from './ModelType.model'; - -export class DesignerDashboardState { - - functions: ModelType[]; - actions: string[]; - -} -- cgit 1.2.3-korg