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.
15 16 17 18 19 |
# File 'lib/slack/web/api/endpoints/im.rb', line 15 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.
36 37 38 39 40 |
# File 'lib/slack/web/api/endpoints/im.rb', line 36 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.
51 52 53 54 55 56 57 58 59 |
# File 'lib/slack/web/api/endpoints/im.rb', line 51 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.
70 71 72 73 74 75 |
# File 'lib/slack/web/api/endpoints/im.rb', line 70 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.
88 89 90 91 92 |
# File 'lib/slack/web/api/endpoints/im.rb', line 88 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
103 104 105 106 107 108 |
# File 'lib/slack/web/api/endpoints/im.rb', line 103 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 |