Class: MisarReach::PipelineResource
- Defined in:
- lib/misar_reach/client.rb
Overview
── Resource: Pipeline ───────────────────────────────────────────────────────
Instance Method Summary collapse
- #get(params = {}) ⇒ Object
-
#update(data) ⇒ Object
Move a deal / reorder the pipeline board.
Methods inherited from Resource
Constructor Details
This class inherits a constructor from MisarReach::Resource
Instance Method Details
#get(params = {}) ⇒ Object
202 203 204 |
# File 'lib/misar_reach/client.rb', line 202 def get(params = {}) @client.request(:get, "/pipeline#{qs(params)}") end |
#update(data) ⇒ Object
Move a deal / reorder the pipeline board.
207 208 209 |
# File 'lib/misar_reach/client.rb', line 207 def update(data) @client.request(:post, "/pipeline", data) end |