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.
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.
33 34 35 36 |
# File 'lib/slack/endpoint/im.rb', line 33 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.
44 45 46 |
# File 'lib/slack/endpoint/im.rb', line 44 def im_list(={}) post("im.list", ) end |
#im_mark(options = {}) ⇒ Object
Sets the read cursor in a direct message channel.
58 59 60 61 62 |
# File 'lib/slack/endpoint/im.rb', line 58 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.
72 73 74 75 |
# File 'lib/slack/endpoint/im.rb', line 72 def im_open(={}) throw ArgumentError.new("Required arguments :user missing") if [:user].nil? post("im.open", ) end |