ACS-5571 Add deprecated attribute to Webscript component (#8755)

This commit is contained in:
Grzegorz Jaśkowski
2023-07-14 23:11:51 +02:00
committed by GitHub
parent e5d04abfab
commit e37b03cbb4
4 changed files with 13 additions and 0 deletions

View File

@@ -18,6 +18,9 @@
import { Component } from '@angular/core'; import { Component } from '@angular/core';
import { LogService } from '@alfresco/adf-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({ @Component({
selector: 'app-webscript', selector: 'app-webscript',
templateUrl: './webscript.component.html' templateUrl: './webscript.component.html'

View File

@@ -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({ @NgModule({
imports: [ imports: [
CommonModule, CommonModule,

View File

@@ -39,6 +39,10 @@ import { WebscriptApi } from '@alfresco/js-api';
* @Output - success - The event is emitted when the data are received * @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({ @Component({
selector: 'adf-webscript-get', selector: 'adf-webscript-get',
templateUrl: './webscript.component.html' templateUrl: './webscript.component.html'

View File

@@ -22,6 +22,9 @@ import { NgModule } from '@angular/core';
import { MaterialModule } from '../material.module'; import { MaterialModule } from '../material.module';
import { WebscriptComponent } from './webscript.component'; 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({ @NgModule({
imports: [ imports: [
CommonModule, CommonModule,