Class: Crowbar::Client::Request::Proposal::Edit
- Defined in:
- lib/crowbar/client/request/proposal/edit.rb
Overview
Implementation for the proposal edit request
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
-
#content ⇒ Hash
Override the request content.
-
#method ⇒ Symbol
HTTP method that gets used by the request.
-
#url ⇒ String
Path to the API endpoint for the request.
Methods inherited from Base
#headers, #initialize, #params, #process
Constructor Details
This class inherits a constructor from Crowbar::Client::Request::Base
Instance Method Details
#content ⇒ Hash
Override the request content
32 33 34 35 36 |
# File 'lib/crowbar/client/request/proposal/edit.rb', line 32 def content super.easy_merge!( attrs.payload ).to_json end |
#method ⇒ Symbol
HTTP method that gets used by the request
43 44 45 |
# File 'lib/crowbar/client/request/proposal/edit.rb', line 43 def method :post end |
#url ⇒ String
Path to the API endpoint for the request
52 53 54 55 56 57 58 59 60 |
# File 'lib/crowbar/client/request/proposal/edit.rb', line 52 def url [ "crowbar", attrs., "1.0", "proposals", attrs.proposal ].join("/") end |