module Basecamp3::Concerns::Recordingable::ClassMethods

Public Instance Methods

delete(bucket_id, id) click to toggle source

Deletes the record.

@param [Integer] bucket_id the id of the bucket @param [Integer] id the id of the record

@return [Boolean]

# File lib/basecamp3/concerns/recordingable.rb, line 16
def delete(bucket_id, id)
  Basecamp3.request.put("/buckets/#{bucket_id}/recordings/#{id}/status/trashed")
end