Method: Parse::PointerCollectionProxy#add!

Defined in:
lib/parse/model/associations/pointer_collection_proxy.rb

#add!(*items) ⇒ Object

Atomically add a set of Parse::Objects to this collection. This is done by making the API request directly with Parse server; the local object is not updated with changes.



65
66
67
# File 'lib/parse/model/associations/pointer_collection_proxy.rb', line 65

def add!(*items)
  super(items.flatten.parse_pointers)
end