dt-common-device 11.0.4 → 11.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -502,9 +502,9 @@ let IssueService = (() => {
|
|
|
502
502
|
this.validateStatusTransition(existingIssue.status, updateData.status);
|
|
503
503
|
}
|
|
504
504
|
// Business logic: Handle priority changes
|
|
505
|
-
if (updateData.priority) {
|
|
506
|
-
|
|
507
|
-
}
|
|
505
|
+
// if (updateData.priority) {
|
|
506
|
+
// this.validatePriorityChange(existingIssue.priority, updateData.priority);
|
|
507
|
+
// }
|
|
508
508
|
return await this.issueRepository.update(id, updateData);
|
|
509
509
|
}
|
|
510
510
|
async deleteIssues(filters, deletedBy, softDelete = true) {
|