[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

@@ -51,12 +51,12 @@ export class CommentModel {
return result.toUpperCase();
}
constructor(obj?: Partial<CommentModel>) {
constructor(obj?: any) {
if (obj) {
this.id = obj.id;
this.message = obj.message;
this.created = obj.created;
this.createdBy = obj.createdBy;
this.createdBy = new User(obj.createdBy);
this.isSelected = obj.isSelected ? obj.isSelected : false;
}
}