Method: IssuesComments#deleteComment
- Defined in:
- lib/github/issues/issues_comments.rb
#deleteComment(repo, id, user = nil) ⇒ Object
36 37 38 39 |
# File 'lib/github/issues/issues_comments.rb', line 36 def deleteComment(repo, id, user=nil) url = 'repos/%s/%s/issues/comments/%s' % [user, repo, id] @github.delete(url) end |