module DiscourseApi::API::Posts
Public Instance Methods
create_post(args)
click to toggle source
# File lib/discourse_api/api/posts.rb, line 5 def create_post(args) args = API.params(args).required(:topic_id, :raw).optional(:created_at, :api_username) post("/posts", args) end
create_post_action(args)
click to toggle source
# File lib/discourse_api/api/posts.rb, line 10 def create_post_action(args) args = API.params(args).required(:id, :post_action_type_id) post("/post_actions", args.to_h.merge(flag_topic: false)) end
delete_post(id)
click to toggle source
# File lib/discourse_api/api/posts.rb, line 35 def delete_post(id) delete("/posts/#{id}.json") end
destroy_post_action(post_id, post_action_type_id)
click to toggle source
# File lib/discourse_api/api/posts.rb, line 39 def destroy_post_action(post_id, post_action_type_id) delete("/post_actions/#{post_id}.json", post_action_type_id: post_action_type_id) end
edit_post(id, raw)
click to toggle source
# File lib/discourse_api/api/posts.rb, line 31 def edit_post(id, raw) put("/posts/#{id}", post: { raw: raw }) end
get_post(id, args = {})
click to toggle source
# File lib/discourse_api/api/posts.rb, line 15 def get_post(id, args = {}) args = API.params(args).optional(:version) response = get("/posts/#{id}.json", args) response[:body] end
post_action_users(post_id, post_action_type_id)
click to toggle source
# File lib/discourse_api/api/posts.rb, line 43 def post_action_users(post_id, post_action_type_id) response = get("/post_action_users.json", id: post_id, post_action_type_id: post_action_type_id) response[:body] end
posts(args = {})
click to toggle source
# File lib/discourse_api/api/posts.rb, line 21 def posts(args = {}) args = API.params(args).default(before: 0) response = get("/posts.json", args) response[:body] end
wikify_post(id)
click to toggle source
# File lib/discourse_api/api/posts.rb, line 27 def wikify_post(id) put("/posts/#{id}/wiki", wiki: true) end