Class: SlackChatter::Api::Files
- Inherits:
-
Base
- Object
- Base
- SlackChatter::Api::Files
show all
- Defined in:
- lib/slack_chatter/api/files.rb
Instance Attribute Summary
Attributes inherited from Base
#client
Instance Method Summary
collapse
Methods inherited from Base
#bool_as_i, #call_method, #initialize
Instance Method Details
#delete(file_id) ⇒ Object
5
6
7
|
# File 'lib/slack_chatter/api/files.rb', line 5
def delete file_id
call_method("files", "delete", {"file" => file_id})
end
|
#info(file_id, opts = {}) ⇒ Object
9
10
11
|
# File 'lib/slack_chatter/api/files.rb', line 9
def info file_id, opts={}
call_method("files", "info", {"file" => file_id}.merge(opts))
end
|
#list(opts = {}) ⇒ Object
13
14
15
|
# File 'lib/slack_chatter/api/files.rb', line 13
def list opts={}
call_method("files", "list", opts)
end
|
#upload ⇒ Object
17
18
19
|
# File 'lib/slack_chatter/api/files.rb', line 17
def upload
raise "not implemented"
end
|