Module: Slack::Endpoint::Im
- Included in:
- Slack::Endpoint
- Defined in:
- lib/slack/endpoint/im.rb
Instance Method Summary collapse
-
#im_close(options = {}) ⇒ Object
This method closes a direct message channel.
-
#im_history(options = {}) ⇒ Object
This method returns a portion of messages/events from the specified direct message channel.
-
#im_list(options = {}) ⇒ Object
This method returns a list of all im channels that the user has.
-
#im_mark(options = {}) ⇒ Object
This method moves the read cursor in a direct message channel.
-
#im_open(options = {}) ⇒ Object
This method opens a direct message channel with another member of your Slack team.
Instance Method Details
#im_close(options = {}) ⇒ Object
This method closes a direct message channel.
14 15 16 17 18 |
# File 'lib/slack/endpoint/im.rb', line 14 def im_close(={}) throw ArgumentError.new("Required arguments :channel missing") if [:channel].nil? [:attachments] = [:attachments].to_json if Hash === [:attachments] post("im.close", ) end |
#im_history(options = {}) ⇒ Object
This method returns a portion of messages/events from the specified direct message channel. To read the entire history for a direct message channel, call the method with no latest or oldest arguments, and then continue paging using the instructions below.
40 41 42 43 44 |
# File 'lib/slack/endpoint/im.rb', line 40 def im_history(={}) throw ArgumentError.new("Required arguments :channel missing") if [:channel].nil? [:attachments] = [:attachments].to_json if Hash === [:attachments] post("im.history", ) end |
#im_list(options = {}) ⇒ Object
This method returns a list of all im channels that the user has.
52 53 54 55 |
# File 'lib/slack/endpoint/im.rb', line 52 def im_list(={}) [:attachments] = [:attachments].to_json if Hash === [:attachments] post("im.list", ) end |
#im_mark(options = {}) ⇒ Object
This method moves the read cursor in a direct message channel.
67 68 69 70 71 72 |
# File 'lib/slack/endpoint/im.rb', line 67 def im_mark(={}) throw ArgumentError.new("Required arguments :channel missing") if [:channel].nil? throw ArgumentError.new("Required arguments :ts missing") if [:ts].nil? [:attachments] = [:attachments].to_json if Hash === [:attachments] post("im.mark", ) end |
#im_open(options = {}) ⇒ Object
This method opens a direct message channel with another member of your Slack team.
82 83 84 85 86 |
# File 'lib/slack/endpoint/im.rb', line 82 def im_open(={}) throw ArgumentError.new("Required arguments :user missing") if [:user].nil? [:attachments] = [:attachments].to_json if Hash === [:attachments] post("im.open", ) end |