diff options
author | KrupaNagabhushan <krupa.nagabhushan@est.tech> | 2022-10-26 17:26:54 +0100 |
---|---|---|
committer | KrupaNagabhushan <krupa.nagabhushan@est.tech> | 2023-01-19 15:23:12 +0000 |
commit | 3943534cd3409c0cca6588f36527df34345d74f2 (patch) | |
tree | fc10c05a93fe853f21f1f3beddf5d0557d7bad1d /catalog-ui/src/app/services | |
parent | 8edfa4dee9fed9be5b38133847c60136294eba80 (diff) |
Download data type from UI
Issue-ID: SDC-4332
Signed-off-by: KrupaNagabhushan <krupa.nagabhushan@est.tech>
Change-Id: If31f7a95eb2d568e716760a33ef2641bad09cf68
Diffstat (limited to 'catalog-ui/src/app/services')
-rw-r--r-- | catalog-ui/src/app/services/data-types-service.ts | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/catalog-ui/src/app/services/data-types-service.ts b/catalog-ui/src/app/services/data-types-service.ts index f3d02a20c0..09ece87907 100644 --- a/catalog-ui/src/app/services/data-types-service.ts +++ b/catalog-ui/src/app/services/data-types-service.ts @@ -24,7 +24,7 @@ import { ComponentInstance, DataTypeModel, DataTypesMap, - IAppConfigurtaion, InputModel, + IAppConfigurtaion, IFileDownload, InputModel, InputPropertyBase, PropertyModel, SchemaProperty @@ -206,4 +206,9 @@ export class DataTypesService implements IDataTypesService { } return true; }; + + public downloadDataType = (dataTypeId: string): angular.IHttpPromise<IFileDownload> => { + console.log("dataTypeId", dataTypeId); + return this.$http.get<IFileDownload>(this.baseUrl + "downloadDataType" + ((dataTypeId) ? '?dataTypeId=' + dataTypeId : '')) + } } |