(opts = {})
| 374 | } |
| 375 | |
| 376 | async issueCommentCreate(opts = {}) { |
| 377 | const { id, ...rest } = opts; |
| 378 | return this.issueCommentUpsert(rest); |
| 379 | } |
| 380 | |
| 381 | async issueCommentUpdate(opts = {}) { |
| 382 | if (!opts.id) throw new Error('Id is missing updating comment'); |
no test coverage detected