Method: Slack::Endpoint::Discovery#discovery_file_tombstone

Defined in:
lib/slack/endpoint/discovery.rb

#discovery_file_tombstone(options = {}) ⇒ Object

There is no documentation for this method.

Parameters:

  • options (Hash) (defaults to: {})

    a customizable set of options

Options Hash (options):

  • :file (Object)

    Specify a file by providing its ID.

See Also:



27
28
29
30
# File 'lib/slack/endpoint/discovery.rb', line 27

def discovery_file_tombstone(options={})
  throw ArgumentError.new("Required arguments :file missing") if options[:file].nil?
  post("discovery.file.tombstone", options)
end