* Check if a status value represents a completed task
(statusValue: string)
| 133 | * Check if a status value represents a completed task |
| 134 | */ |
| 135 | isCompletedStatus(statusValue: string): boolean { |
| 136 | const status = this.getStatusConfig(statusValue); |
| 137 | return status?.isCompleted || false; |
| 138 | } |
| 139 | |
| 140 | /** |
| 141 | * Get status order for sorting |
nothing calls this directly
no test coverage detected