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.

Examples:

@client.delete_gist_comment('208sdaz3', '586399')

Parameters:

  • gist_id (String)

    Id of the gist.

  • gist_comment_id (Integer)

    Id of the gist comment to delete.

Returns:

  • (Boolean)

    True if comment deleted, false otherwise.

See Also:



229
230
231
# File 'lib/octokit/client/gists.rb', line 229

def delete_gist_comment(gist_id, gist_comment_id, options = {})
  boolean_from_response(:delete, "gists/#{gist_id}/comments/#{gist_comment_id}", options)
end