Sha256: 5efd787b5a0aaaf134bb8066d6cf2e69f41e80f8e5e2f4b799d71a629a017858
Contents?: true
Size: 528 Bytes
Versions: 15
Compression:
Stored size: 528 Bytes
Contents
module Panoptes class Client module Comments # 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 def create_comment(discussion_id:, body:) user_id = current_user["id"] response = talk.post("/comments", comments: {discussion_id: discussion_id, body: body, user_id: user_id}) response.fetch("comments")[0] end end end end
Version data entries
15 entries across 15 versions & 1 rubygems