* Finds and returns the content of a local issue file by its number. * * ADR 0004 §3.2 replaces ID-derived folder lookup with the content index because * ordinal-100 chunk position is no longer derivable from the GitHub issue number. * * @param {string} issueNumber The issue
(issueNumber)
| 95 | * @returns {Promise<object>} A promise that resolves to the file content or a structured error. |
| 96 | */ |
| 97 | async getIssueById(issueNumber) { |
| 98 | return this.#getByIndexedContentId('issues', issueNumber, 'Issue'); |
| 99 | } |
| 100 | |
| 101 | /** |
| 102 | * Finds and returns the content of a local discussion file by its number. |
nothing calls this directly
no test coverage detected