Module: Slack::Endpoint::Mpim
- Included in:
- Slack::Endpoint
- Defined in:
- lib/slack/endpoint/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.
-
#mpim_replies(options = {}) ⇒ Object
This method returns an entire thread (a message plus all the messages in reply to it).
Instance Method Details
#mpim_close(options = {}) ⇒ Object
This method closes a multiparty direct message channel.
14 15 16 17 |
# File 'lib/slack/endpoint/mpim.rb', line 14 def mpim_close(={}) throw ArgumentError.new("Required arguments :channel missing") if [:channel].nil? 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.
39 40 41 42 |
# File 'lib/slack/endpoint/mpim.rb', line 39 def mpim_history(={}) throw ArgumentError.new("Required arguments :channel missing") if [:channel].nil? post("mpim.history", ) end |
#mpim_list(options = {}) ⇒ Object
This method returns a list of all multiparty direct message channels that the user has.
50 51 52 |
# File 'lib/slack/endpoint/mpim.rb', line 50 def mpim_list(={}) post("mpim.list", ) end |
#mpim_mark(options = {}) ⇒ Object
This method moves the read cursor in a multiparty direct message channel.
64 65 66 67 68 |
# File 'lib/slack/endpoint/mpim.rb', line 64 def mpim_mark(={}) throw ArgumentError.new("Required arguments :channel missing") if [:channel].nil? throw ArgumentError.new("Required arguments :ts missing") if [:ts].nil? post("mpim.mark", ) end |
#mpim_open(options = {}) ⇒ Object
This method opens a multiparty direct message.
78 79 80 81 |
# File 'lib/slack/endpoint/mpim.rb', line 78 def mpim_open(={}) throw ArgumentError.new("Required arguments :users missing") if [:users].nil? post("mpim.open", ) end |
#mpim_replies(options = {}) ⇒ Object
This method returns an entire thread (a message plus all the messages in reply to it).
93 94 95 96 97 |
# File 'lib/slack/endpoint/mpim.rb', line 93 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? post("mpim.replies", ) end |