module Octobat::APIOperations::Delete

Public Instance Methods

delete(params = {}, opts={}) click to toggle source
# File lib/octobat/api_operations/delete.rb, line 4
def delete(params = {}, opts={})
  api_key, headers = Util.parse_opts(opts)
  
  response, api_key = Octobat.request(:delete, url, api_key || @api_key, params, headers)
  refresh_from(response, api_key)
end