Method: Geet::Github::AbstractIssue#comment
- Defined in:
- lib/geet/github/abstract_issue.rb
#comment(comment) ⇒ Object
69 70 71 72 73 74 |
# File 'lib/geet/github/abstract_issue.rb', line 69 def comment(comment) api_path = "issues/#{@number}/comments" request_data = { body: comment } @api_interface.send_request(api_path, data: request_data) end |