* Get status configuration by value
(value: string)
| 102 | * Get status configuration by value |
| 103 | */ |
| 104 | getStatusConfig(value: string): StatusConfig | undefined { |
| 105 | const normalizedValue = this.normalizeStatusValue(value); |
| 106 | return this.statuses.find( |
| 107 | (s) => this.normalizeStatusValue(s.value) === normalizedValue |
| 108 | ); |
| 109 | } |
| 110 | |
| 111 | /** |
| 112 | * Get all completed status values |
no test coverage detected