class Crowbar::Client::Request::Proposal::Dequeue
Implementation for the proposal dequeue request
Public Instance Methods
method()
click to toggle source
HTTP method that gets used by the request
@return [Symbol] the method for the request
# File lib/crowbar/client/request/proposal/dequeue.rb, line 30 def method :delete end
url()
click to toggle source
Path to the API endpoint for the request
@return [String] path to the API endpoint
# File lib/crowbar/client/request/proposal/dequeue.rb, line 39 def url [ "crowbar", attrs.barclamp, "1.0", "proposals", "dequeue", attrs.proposal ].join("/") end