Module: Slack::Web::Api::Endpoints::Mpim
- Included in:
- Slack::Web::Api::Endpoints
- Defined in:
- lib/slack/web/api/endpoints/mpim.rb
Instance Method Summary collapse
-
#mpim_close(options = {}) ⇒ Object
Closes a multiparty direct message channel.
-
#mpim_history(options = {}) ⇒ Object
Fetches history of messages and events from a multiparty direct message.
-
#mpim_list(options = {}) ⇒ Object
Lists multiparty direct message channels for the calling user.
-
#mpim_mark(options = {}) ⇒ Object
Sets the read cursor in a multiparty direct message channel.
-
#mpim_open(options = {}) ⇒ Object
This method opens a multiparty direct message.
-
#mpim_replies(options = {}) ⇒ Object
Retrieve a thread of messages posted to a direct message conversation from a multiparty direct message.
Instance Method Details
#mpim_close(options = {}) ⇒ Object
Closes a multiparty direct message channel.
15 16 17 18 19 |
# File 'lib/slack/web/api/endpoints/mpim.rb', line 15 def mpim_close( = {}) throw ArgumentError.new('Required arguments :channel missing') if [:channel].nil? = .merge(channel: channels_id()['channel']['id']) if [:channel] post('mpim.close', ) end |
#mpim_history(options = {}) ⇒ Object
Fetches history of messages and events from a multiparty direct message.
36 37 38 39 40 |
# File 'lib/slack/web/api/endpoints/mpim.rb', line 36 def mpim_history( = {}) throw ArgumentError.new('Required arguments :channel missing') if [:channel].nil? = .merge(channel: channels_id()['channel']['id']) if [:channel] post('mpim.history', ) end |
#mpim_list(options = {}) ⇒ Object
Lists multiparty direct message channels for the calling user.
51 52 53 54 55 56 57 58 59 |
# File 'lib/slack/web/api/endpoints/mpim.rb', line 51 def mpim_list( = {}) if block_given? Pagination::Cursor.new(self, :mpim_list, ).each do |page| yield page end else post('mpim.list', ) end end |
#mpim_mark(options = {}) ⇒ Object
Sets the read cursor in a multiparty direct message channel.
70 71 72 73 74 75 |
# File 'lib/slack/web/api/endpoints/mpim.rb', line 70 def mpim_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('mpim.mark', ) end |
#mpim_open(options = {}) ⇒ Object
This method opens a multiparty direct message.
84 85 86 87 |
# File 'lib/slack/web/api/endpoints/mpim.rb', line 84 def mpim_open( = {}) throw ArgumentError.new('Required arguments :users missing') if [:users].nil? post('mpim.open', ) end |
#mpim_replies(options = {}) ⇒ Object
Retrieve a thread of messages posted to a direct message conversation from a multiparty direct message.
98 99 100 101 102 103 |
# File 'lib/slack/web/api/endpoints/mpim.rb', line 98 def mpim_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('mpim.replies', ) end |