module ChartMogul::API::Actions::Destroy::ClassMethods

Public Instance Methods

destroy!(options = {}) click to toggle source
# File lib/chartmogul/api/actions/destroy.rb, line 19
def destroy!(options = {})
  handling_errors do
    connection.delete("#{resource_path.apply(options)}/#{options[:uuid]}")
  end
  true
end