Method: Redd::Models::LiveThread#update

Defined in:
lib/redd/models/live_thread.rb

#update(body) ⇒ Object

Add an update to this live event.

Parameters:

  • body (String)

    the update text



43
44
45
# File 'lib/redd/models/live_thread.rb', line 43

def update(body)
  @client.post("/api/live/#{get_attribute(:id)}/update", body: body)
end