Read-only detail: one issue's full fields + markdown body + its run feed.
(wsId: string, id: string)
| 152 | |
| 153 | /** Read-only detail: one issue's full fields + markdown body + its run feed. */ |
| 154 | async getDetail(wsId: string, id: string): Promise<IssueDetail> { |
| 155 | return fetchJson<IssueDetail>( |
| 156 | `/api/issues/${encodeURIComponent(wsId)}/${encodeURIComponent(id)}`, |
| 157 | ) |
| 158 | }, |
| 159 | |
| 160 | /** |
| 161 | * Resolve a `[[name]]` token across BOTH namespaces (entity + issues). Used by |
nothing calls this directly
no test coverage detected