* Get tasks by status from the filter index.
(status: string)
| 771 | * Get tasks by status from the filter index. |
| 772 | */ |
| 773 | getTaskPathsByStatus(status: string): string[] { |
| 774 | const expectedStatus = |
| 775 | normalizeStatusConfigValue(status, this.settings.customStatuses) ?? status; |
| 776 | this.ensureFilterIndexes(); |
| 777 | return Array.from(this.statusIndex.get(expectedStatus) ?? []); |
| 778 | } |
| 779 | |
| 780 | /** |
| 781 | * Get tasks by priority from the filter index. |
no test coverage detected