Method: Atom::Collection#put_media!

Defined in:
lib/atom/collection.rb

#put_media!(data, content_type, slug = nil) ⇒ Object

PUT a media item to the collection



119
120
121
122
123
# File 'lib/atom/collection.rb', line 119

def put_media!(data, content_type, slug = nil)
  headers = {"Content-Type" => content_type}

  @http.put(url, data, headers)
end