* Get priority configuration by value
(value: string)
| 16 | * Get priority configuration by value |
| 17 | */ |
| 18 | getPriorityConfig(value: string): PriorityConfig | undefined { |
| 19 | const normalizedValue = this.normalizePriorityValue(value); |
| 20 | return this.priorities.find((p) => p.value === normalizedValue); |
| 21 | } |
| 22 | |
| 23 | /** |
| 24 | * Get priorities ordered by weight (highest weight first) |
no test coverage detected