Sha256: 66ce685c51534596ae3fc7a85b7f690e42fabcc145bc41b706bf83dd3246a58b
Contents?: true
Size: 1022 Bytes
Versions: 1
Compression:
Stored size: 1022 Bytes
Contents
module DiscourseApi module API module Topics def create_topic(params={}) post("/posts", params) end def latest_topics(*args) response = get('/latest.json', args) response[:body]['topic_list']['topics'] end def new_topics(*args) response = get("/new.json", args) response[:body]['topic_list']['topics'] end def rename_topic(topic_id, title) put("/t/#{topic_id}.json", { topic_id: topic_id, title: title }) end def recategorize_topic(topic_id, category_id) put("/t/#{topic_id}.json", { topic_id: topic_id, category_id: category_id }) end def topic(id, *args) response = get("/t/#{id}.json", args) response[:body] end def topics_by(username, *args) response = get("/topics/created-by/#{username}.json", args) response[:body]['topic_list']['topics'] end def delete_topic(id) delete("/t/#{id}.json") end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
discourse_api-0.2.4 | lib/discourse_api/api/topics.rb |