(id, body)
| 36 | } |
| 37 | |
| 38 | async updateComment(id, body) { |
| 39 | return (await this.axios.patch(`/issues/comments/${id}`, {body})).data; |
| 40 | } |
| 41 | |
| 42 | async appendLabels(issue, labels) { |
| 43 | return (await this.axios.post(`/issues/${issue}/labels`, {labels})).data; |
nothing calls this directly
no outgoing calls
no test coverage detected