Module: Slack::Web::Api::Endpoints::Im
- Included in:
- Slack::Web::Api::Endpoints
- Defined in:
- lib/slack/web/api/endpoints/im.rb
Instance Method Summary collapse
-
#im_close(options = {}) ⇒ Object
Close a direct message channel.
-
#im_history(options = {}) ⇒ Object
Fetches history of messages and events from direct message channel.
-
#im_list(options = {}) ⇒ Object
Lists direct message channels for the calling user.
-
#im_mark(options = {}) ⇒ Object
Sets the read cursor in a direct message channel.
-
#im_open(options = {}) ⇒ Object
Opens a direct message channel.
-
#im_replies(options = {}) ⇒ Object
Retrieve a thread of messages posted to a direct message conversation.
Instance Method Details
#im_close(options = {}) ⇒ Object
Close a direct message channel.
16 17 18 19 20 |
# File 'lib/slack/web/api/endpoints/im.rb', line 16 def im_close( = {}) throw ArgumentError.new('Required arguments :channel missing') if [:channel].nil? = .merge(channel: channels_id()['channel']['id']) if [:channel] post('im.close', ) end |
#im_history(options = {}) ⇒ Object
Fetches history of messages and events from direct message channel.
37 38 39 40 41 |
# File 'lib/slack/web/api/endpoints/im.rb', line 37 def im_history( = {}) throw ArgumentError.new('Required arguments :channel missing') if [:channel].nil? = .merge(channel: channels_id()['channel']['id']) if [:channel] post('im.history', ) end |
#im_list(options = {}) ⇒ Object
Lists direct message channels for the calling user.
52 53 54 55 56 57 58 59 60 |
# File 'lib/slack/web/api/endpoints/im.rb', line 52 def im_list( = {}) if block_given? Pagination::Cursor.new(self, :im_list, ).each do |page| yield page end else post('im.list', ) end end |
#im_mark(options = {}) ⇒ Object
Sets the read cursor in a direct message channel.
71 72 73 74 75 76 |
# File 'lib/slack/web/api/endpoints/im.rb', line 71 def im_mark( = {}) throw ArgumentError.new('Required arguments :channel missing') if [:channel].nil? throw ArgumentError.new('Required arguments :ts missing') if [:ts].nil? = .merge(channel: channels_id()['channel']['id']) if [:channel] post('im.mark', ) end |
#im_open(options = {}) ⇒ Object
Opens a direct message channel.
89 90 91 92 93 |
# File 'lib/slack/web/api/endpoints/im.rb', line 89 def im_open( = {}) throw ArgumentError.new('Required arguments :user missing') if [:user].nil? = .merge(user: users_id()['user']['id']) if [:user] post('im.open', ) end |
#im_replies(options = {}) ⇒ Object
Retrieve a thread of messages posted to a direct message conversation
104 105 106 107 108 109 |
# File 'lib/slack/web/api/endpoints/im.rb', line 104 def im_replies( = {}) throw ArgumentError.new('Required arguments :channel missing') if [:channel].nil? throw ArgumentError.new('Required arguments :thread_ts missing') if [:thread_ts].nil? = .merge(channel: channels_id()['channel']['id']) if [:channel] post('im.replies', ) end |