[ACS-7427] Process Services improvements and cleanup (#9664)

This commit is contained in:
Denys Vuika
2024-05-20 16:08:47 -04:00
committed by GitHub
parent 96e607b4de
commit e71e2a749a
174 changed files with 1736 additions and 3933 deletions

View File

@@ -16,17 +16,22 @@
*/
import { Component, Input, ViewEncapsulation } from '@angular/core';
import { ADF_COMMENTS_SERVICE } from '@alfresco/adf-core';
import { ADF_COMMENTS_SERVICE, CommentsModule } from '@alfresco/adf-core';
import { TaskCommentsService } from './services/task-comments.service';
import { CommonModule } from '@angular/common';
@Component({
selector: 'adf-task-comments',
standalone: true,
imports: [CommonModule, CommentsModule],
templateUrl: './task-comments.component.html',
encapsulation: ViewEncapsulation.None,
providers: [{
provide: ADF_COMMENTS_SERVICE,
useClass: TaskCommentsService
}]
providers: [
{
provide: ADF_COMMENTS_SERVICE,
useClass: TaskCommentsService
}
]
})
export class TaskCommentsComponent {
/** The numeric ID of the task. */