From e37b03cbb4466d2251ea988fe87aef8871621e57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Grzegorz=20Ja=C5=9Bkowski?= <138671284+g-jaskowski@users.noreply.github.com> Date: Fri, 14 Jul 2023 23:11:51 +0200 Subject: [PATCH] ACS-5571 Add deprecated attribute to Webscript component (#8755) --- .../src/app/components/webscript/webscript.component.ts | 3 +++ demo-shell/src/app/components/webscript/webscript.module.ts | 3 +++ lib/content-services/src/lib/webscript/webscript.component.ts | 4 ++++ lib/content-services/src/lib/webscript/webscript.module.ts | 3 +++ 4 files changed, 13 insertions(+) diff --git a/demo-shell/src/app/components/webscript/webscript.component.ts b/demo-shell/src/app/components/webscript/webscript.component.ts index d723dd81c5e..1157b953b98 100644 --- a/demo-shell/src/app/components/webscript/webscript.component.ts +++ b/demo-shell/src/app/components/webscript/webscript.component.ts @@ -18,6 +18,9 @@ import { Component } from '@angular/core'; import { LogService } from '@alfresco/adf-core'; +/** + * @deprecated Webscript component has never been turned into a product and has no UI/UX and no use cases in ACA/ADW/ACC. + */ @Component({ selector: 'app-webscript', templateUrl: './webscript.component.html' diff --git a/demo-shell/src/app/components/webscript/webscript.module.ts b/demo-shell/src/app/components/webscript/webscript.module.ts index ff06ce2e1cf..530e99c99f5 100644 --- a/demo-shell/src/app/components/webscript/webscript.module.ts +++ b/demo-shell/src/app/components/webscript/webscript.module.ts @@ -29,6 +29,9 @@ const routes: Routes = [ } ]; +/** + * @deprecated Webscript component has never been turned into a product and has no UI/UX and no use cases in ACA/ADW/ACC. + */ @NgModule({ imports: [ CommonModule, diff --git a/lib/content-services/src/lib/webscript/webscript.component.ts b/lib/content-services/src/lib/webscript/webscript.component.ts index bbf1306c56a..5a573c98c89 100644 --- a/lib/content-services/src/lib/webscript/webscript.component.ts +++ b/lib/content-services/src/lib/webscript/webscript.component.ts @@ -39,6 +39,10 @@ import { WebscriptApi } from '@alfresco/js-api'; * @Output - success - The event is emitted when the data are received * */ + +/** + * @deprecated Webscript component has never been turned into a product and has no UI/UX and no use cases in ACA/ADW/ACC. + */ @Component({ selector: 'adf-webscript-get', templateUrl: './webscript.component.html' diff --git a/lib/content-services/src/lib/webscript/webscript.module.ts b/lib/content-services/src/lib/webscript/webscript.module.ts index 9f715354126..1d82727585f 100644 --- a/lib/content-services/src/lib/webscript/webscript.module.ts +++ b/lib/content-services/src/lib/webscript/webscript.module.ts @@ -22,6 +22,9 @@ import { NgModule } from '@angular/core'; import { MaterialModule } from '../material.module'; import { WebscriptComponent } from './webscript.component'; +/** + * @deprecated Webscript component has never been turned into a product and has no UI/UX and no use cases in ACA/ADW/ACC. + */ @NgModule({ imports: [ CommonModule,