* Set auto-archive service for handling automatic archiving
(service: AutoArchiveService)
| 192 | * Set auto-archive service for handling automatic archiving |
| 193 | */ |
| 194 | setAutoArchiveService(service: AutoArchiveService): void { |
| 195 | this.autoArchiveService = service; |
| 196 | this.taskUpdateService.setAutoArchiveService(service); |
| 197 | } |
| 198 | |
| 199 | private normalizeStatusValue(value: unknown): string { |
| 200 | if (typeof value === "boolean") return value ? "true" : "false"; |
no outgoing calls
no test coverage detected