Method: Parse::PointerCollectionProxy#remove!
- Defined in:
- lib/parse/model/associations/pointer_collection_proxy.rb
#remove!(*items) ⇒ Object
Atomically remove 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.
83 84 85 |
# File 'lib/parse/model/associations/pointer_collection_proxy.rb', line 83 def remove!(*items) super(items.flatten.parse_pointers) end |