Module: Slack::Web::Api::Endpoints::Im
- Included in:
- Slack::Web::Api::Endpoints
- Defined in:
- lib/slack/web/api/endpoints/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.
15 16 17 18 19 |
# File 'lib/slack/web/api/endpoints/im.rb', line 15 def im_close( = {}) throw ArgumentError.new('Required arguments :channel missing') if [:channel].nil? = .merge(channel: channels_id()['channel']['id']) if [:channel] 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.
38 39 40 41 42 |
# File 'lib/slack/web/api/endpoints/im.rb', line 38 def im_history( = {}) throw ArgumentError.new('Required arguments :channel missing') if [:channel].nil? = .merge(channel: channels_id()['channel']['id']) if [:channel] post('im.history', ) end |
#im_list(options = {}) ⇒ Object
This method returns a list of all im channels that the user has.
49 50 51 |
# File 'lib/slack/web/api/endpoints/im.rb', line 49 def im_list( = {}) post('im.list', ) end |
#im_mark(options = {}) ⇒ Object
This method moves the read cursor in a direct message channel.
62 63 64 65 66 67 |
# File 'lib/slack/web/api/endpoints/im.rb', line 62 def im_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('im.mark', ) end |
#im_open(options = {}) ⇒ Object
This method opens a direct message channel with another member of your Slack team.
76 77 78 79 80 |
# File 'lib/slack/web/api/endpoints/im.rb', line 76 def im_open( = {}) throw ArgumentError.new('Required arguments :user missing') if [:user].nil? = .merge(user: users_id()['user']['id']) if [:user] post('im.open', ) end |