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
This method closes a multiparty direct message channel.
-
#mpim_history(options = {}) ⇒ Object
This method returns a portion of messages/events from the specified multiparty direct message channel.
-
#mpim_list(options = {}) ⇒ Object
This method returns a list of all multiparty direct message channels that the user has.
-
#mpim_mark(options = {}) ⇒ Object
This method moves the read cursor in a multiparty direct message channel.
-
#mpim_open(options = {}) ⇒ Object
This method opens a multiparty direct message.
Instance Method Details
#mpim_close(options = {}) ⇒ Object
This method 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
This method returns a portion of messages/events from the specified multiparty direct message channel. To read the entire history for a multiparty direct message, call the method with no latest or oldest arguments, and then continue paging using the instructions below.
38 39 40 41 42 |
# File 'lib/slack/web/api/endpoints/mpim.rb', line 38 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
This method returns a list of all multiparty direct message channels that the user has.
49 50 51 |
# File 'lib/slack/web/api/endpoints/mpim.rb', line 49 def mpim_list( = {}) post('mpim.list', ) end |
#mpim_mark(options = {}) ⇒ Object
This method moves the read cursor in a multiparty direct message channel.
62 63 64 65 66 67 |
# File 'lib/slack/web/api/endpoints/mpim.rb', line 62 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.
76 77 78 79 |
# File 'lib/slack/web/api/endpoints/mpim.rb', line 76 def mpim_open( = {}) throw ArgumentError.new('Required arguments :users missing') if [:users].nil? post('mpim.open', ) end |