lib/slack/web/api/endpoints/mpim.rb in slack-ruby-client-0.10.0 vs lib/slack/web/api/endpoints/mpim.rb in slack-ruby-client-0.11.0
- old
+ new
@@ -9,11 +9,11 @@
# Closes a multiparty direct message channel.
#
# @option options [channel] :channel
# MPIM to close.
# @see https://api.slack.com/methods/mpim.close
- # @see https://github.com/dblock/slack-api-ref/blob/master/methods/mpim/mpim.close.json
+ # @see https://github.com/slack-ruby/slack-api-ref/blob/master/methods/mpim/mpim.close.json
def mpim_close(options = {})
throw ArgumentError.new('Required arguments :channel missing') if options[:channel].nil?
options = options.merge(channel: channels_id(options)['channel']['id']) if options[:channel]
post('mpim.close', options)
end
@@ -30,22 +30,22 @@
# @option options [timestamp] :oldest
# Start of time range of messages to include in results.
# @option options [Object] :unreads
# Include unread_count_display in the output?.
# @see https://api.slack.com/methods/mpim.history
- # @see https://github.com/dblock/slack-api-ref/blob/master/methods/mpim/mpim.history.json
+ # @see https://github.com/slack-ruby/slack-api-ref/blob/master/methods/mpim/mpim.history.json
def mpim_history(options = {})
throw ArgumentError.new('Required arguments :channel missing') if options[:channel].nil?
options = options.merge(channel: channels_id(options)['channel']['id']) if options[:channel]
post('mpim.history', options)
end
#
# Lists multiparty direct message channels for the calling user.
#
# @see https://api.slack.com/methods/mpim.list
- # @see https://github.com/dblock/slack-api-ref/blob/master/methods/mpim/mpim.list.json
+ # @see https://github.com/slack-ruby/slack-api-ref/blob/master/methods/mpim/mpim.list.json
def mpim_list(options = {})
post('mpim.list', options)
end
#
@@ -54,11 +54,11 @@
# @option options [channel] :channel
# multiparty direct message channel to set reading cursor in.
# @option options [timestamp] :ts
# Timestamp of the most recently seen message.
# @see https://api.slack.com/methods/mpim.mark
- # @see https://github.com/dblock/slack-api-ref/blob/master/methods/mpim/mpim.mark.json
+ # @see https://github.com/slack-ruby/slack-api-ref/blob/master/methods/mpim/mpim.mark.json
def mpim_mark(options = {})
throw ArgumentError.new('Required arguments :channel missing') if options[:channel].nil?
throw ArgumentError.new('Required arguments :ts missing') if options[:ts].nil?
options = options.merge(channel: channels_id(options)['channel']['id']) if options[:channel]
post('mpim.mark', options)
@@ -68,11 +68,11 @@
# This method opens a multiparty direct message.
#
# @option options [Object] :users
# Comma separated lists of users. The ordering of the users is preserved whenever a MPIM group is returned.
# @see https://api.slack.com/methods/mpim.open
- # @see https://github.com/dblock/slack-api-ref/blob/master/methods/mpim/mpim.open.json
+ # @see https://github.com/slack-ruby/slack-api-ref/blob/master/methods/mpim/mpim.open.json
def mpim_open(options = {})
throw ArgumentError.new('Required arguments :users missing') if options[:users].nil?
post('mpim.open', options)
end
@@ -82,10 +82,10 @@
# @option options [channel] :channel
# Multiparty direct message channel to fetch thread from.
# @option options [Object] :thread_ts
# Unique identifier of a thread's parent message.
# @see https://api.slack.com/methods/mpim.replies
- # @see https://github.com/dblock/slack-api-ref/blob/master/methods/mpim/mpim.replies.json
+ # @see https://github.com/slack-ruby/slack-api-ref/blob/master/methods/mpim/mpim.replies.json
def mpim_replies(options = {})
throw ArgumentError.new('Required arguments :channel missing') if options[:channel].nil?
throw ArgumentError.new('Required arguments :thread_ts missing') if options[:thread_ts].nil?
options = options.merge(channel: channels_id(options)['channel']['id']) if options[:channel]
post('mpim.replies', options)