Method: Teamlab::Project#update_message

Defined in:
lib/teamlab/modules/project.rb

#update_message(message_id, project_id, title, content, options = {}) ⇒ Object



50
51
52
# File 'lib/teamlab/modules/project.rb', line 50

def update_message(message_id, project_id, title, content, options = {})
  @request.put(['message', message_id.to_s], { projectid: project_id, title: title, content: content }.merge(options))
end