Method: Octokit::Client::Gists#delete_gist_comment
- Defined in:
- lib/octokit/client/gists.rb
#delete_gist_comment(gist_id, gist_comment_id, options = {}) ⇒ Boolean
Delete gist comment
Requires authenticated client.
229 230 231 |
# File 'lib/octokit/client/gists.rb', line 229 def delete_gist_comment(gist_id, gist_comment_id, = {}) boolean_from_response(:delete, "gists/#{gist_id}/comments/#{gist_comment_id}", ) end |