(issue)
| 325 | }) |
| 326 | } |
| 327 | getComments (issue) { |
| 328 | if (!issue) return |
| 329 | // Get comments via v4 graphql api, login required and sorting feature is available |
| 330 | if (this.accessToken) return QLGetComments.call(this, issue) |
| 331 | return this.getCommentsV3(issue) |
| 332 | } |
| 333 | |
| 334 | createComment () { |
| 335 | const { comment, localComments, comments } = this.state |
no outgoing calls
no test coverage detected