Method: DiscourseApi::API::Topics#rename_topic

Defined in:
lib/discourse_api/api/topics.rb

#rename_topic(topic_id, title) ⇒ Object



42
43
44
# File 'lib/discourse_api/api/topics.rb', line 42

def rename_topic(topic_id, title)
  put("/t/#{topic_id}.json", topic_id: topic_id, title: title)
end