Skip to content

Commit

Permalink
ACS-5571 Add deprecated attribute to Webscript component (#8755)
Browse files Browse the repository at this point in the history
  • Loading branch information
g-jaskowski committed Jul 14, 2023
1 parent e5d04ab commit e37b03c
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
3 changes: 3 additions & 0 deletions demo-shell/src/app/components/webscript/webscript.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
4 changes: 4 additions & 0 deletions lib/content-services/src/lib/webscript/webscript.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
3 changes: 3 additions & 0 deletions lib/content-services/src/lib/webscript/webscript.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit e37b03c

Please sign in to comment.