Module: Slack::Endpoint::Im
- Included in:
- Slack::Endpoint
- Defined in:
- lib/slack/endpoint/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.
14 15 16 17 |
# File 'lib/slack/endpoint/im.rb', line 14 def im_close(={}) throw ArgumentError.new("Required arguments :channel missing") if [:channel].nil? post("im.close", ) end |
#im_history(options = {}) ⇒ Object
Fetches history of messages and events from direct message channel.
37 38 39 40 |
# File 'lib/slack/endpoint/im.rb', line 37 def im_history(={}) throw ArgumentError.new("Required arguments :channel missing") if [:channel].nil? post("im.history", ) end |
#im_list(options = {}) ⇒ Object
Lists direct message channels for the calling user.
52 53 54 |
# File 'lib/slack/endpoint/im.rb', line 52 def im_list(={}) post("im.list", ) end |
#im_mark(options = {}) ⇒ Object
Sets the read cursor in a direct message channel.
66 67 68 69 70 |
# File 'lib/slack/endpoint/im.rb', line 66 def im_mark(={}) throw ArgumentError.new("Required arguments :channel missing") if [:channel].nil? throw ArgumentError.new("Required arguments :ts missing") if [:ts].nil? post("im.mark", ) end |
#im_open(options = {}) ⇒ Object
Opens a direct message channel.
84 85 86 87 |
# File 'lib/slack/endpoint/im.rb', line 84 def im_open(={}) throw ArgumentError.new("Required arguments :user missing") if [:user].nil? post("im.open", ) end |
#im_replies(options = {}) ⇒ Object
Retrieve a thread of messages posted to a direct message conversation
99 100 101 102 103 |
# File 'lib/slack/endpoint/im.rb', line 99 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? post("im.replies", ) end |