module Panoptes::Client::Comments
Public Instance Methods
create_comment(discussion_id:, body:)
click to toggle source
Post a comment to a talk discussion
@param discussion_id [Integer] filter by focussable id @param focus_type [String] filter by focussable type @return list of discussions
# File lib/panoptes/client/comments.rb, line 11 def create_comment(discussion_id:, body:) user_id = token_contents['id'] response = talk.post('/comments', comments: { discussion_id: discussion_id, body: body, user_id: user_id }) response.fetch('comments')[0] end