Module: Slack::Web::Api::Endpoints::Files
- Included in:
- Slack::Web::Api::Endpoints
- Defined in:
- lib/slack/web/api/endpoints/files.rb
Instance Method Summary collapse
-
#files_delete(options = {}) ⇒ Object
Deletes a file.
-
#files_edit(options = {}) ⇒ Object
Change the properties of a file (undocumented).
-
#files_info(options = {}) ⇒ Object
Gets information about a team file.
-
#files_list(options = {}) ⇒ Object
Lists & filters team files.
-
#files_revokePublicURL(options = {}) ⇒ Object
Revokes public/external sharing access for a file.
-
#files_share(options = {}) ⇒ Object
Share an existing file in a channel (undocumented).
-
#files_sharedPublicURL(options = {}) ⇒ Object
Enables a file for public/external sharing.
-
#files_upload(options = {}) ⇒ Object
Uploads or creates a file.
Instance Method Details
#files_delete(options = {}) ⇒ Object
Deletes a file.
15 16 17 18 |
# File 'lib/slack/web/api/endpoints/files.rb', line 15 def files_delete( = {}) throw ArgumentError.new('Required arguments :file missing') if [:file].nil? post('files.delete', ) end |
#files_edit(options = {}) ⇒ Object
Change the properties of a file (undocumented)
30 31 32 33 34 |
# File 'lib/slack/web/api/endpoints/files.rb', line 30 def files_edit( = {}) throw ArgumentError.new('Required arguments :file missing') if [:file].nil? throw ArgumentError.new('Required arguments :title missing') if [:title].nil? post('files.edit', ) end |
#files_info(options = {}) ⇒ Object
Gets information about a team file.
43 44 45 46 |
# File 'lib/slack/web/api/endpoints/files.rb', line 43 def files_info( = {}) throw ArgumentError.new('Required arguments :file missing') if [:file].nil? post('files.info', ) end |
#files_list(options = {}) ⇒ Object
Lists & filters team files.
75 76 77 78 79 |
# File 'lib/slack/web/api/endpoints/files.rb', line 75 def files_list( = {}) = .merge(channel: channels_id()['channel']['id']) if [:channel] = .merge(user: users_id()['user']['id']) if [:user] post('files.list', ) end |
#files_revokePublicURL(options = {}) ⇒ Object
Revokes public/external sharing access for a file
88 89 90 91 |
# File 'lib/slack/web/api/endpoints/files.rb', line 88 def files_revokePublicURL( = {}) throw ArgumentError.new('Required arguments :file missing') if [:file].nil? post('files.revokePublicURL', ) end |
#files_share(options = {}) ⇒ Object
Share an existing file in a channel (undocumented)
101 102 103 104 105 106 |
# File 'lib/slack/web/api/endpoints/files.rb', line 101 def files_share( = {}) throw ArgumentError.new('Required arguments :file missing') if [:file].nil? throw ArgumentError.new('Required arguments :channel missing') if [:channel].nil? = .merge(channel: channels_id()['channel']['id']) if [:channel] post('files.share', ) end |
#files_sharedPublicURL(options = {}) ⇒ Object
Enables a file for public/external sharing.
115 116 117 118 |
# File 'lib/slack/web/api/endpoints/files.rb', line 115 def files_sharedPublicURL( = {}) throw ArgumentError.new('Required arguments :file missing') if [:file].nil? post('files.sharedPublicURL', ) end |
#files_upload(options = {}) ⇒ Object
Uploads or creates a file.
139 140 141 |
# File 'lib/slack/web/api/endpoints/files.rb', line 139 def files_upload( = {}) post('files.upload', ) end |