Module: Slack::Web::Api::Endpoints::Reactions

Included in:
Slack::Web::Api::Endpoints
Defined in:
lib/slack/web/api/endpoints/reactions.rb

Instance Method Summary collapse

Instance Method Details

#reactions_add(options = {}) ⇒ Object

Adds a reaction to an item.

Parameters:

  • options (Hash) (defaults to: {})

    a customizable set of options

Options Hash (options):

  • :name (Object)

    Reaction (emoji) name.

  • :channel (channel)

    Channel where the message to add reaction to was posted.

  • :file (file)

    File to add reaction to.

  • :file_comment (Object)

    File comment to add reaction to.

  • :timestamp (Object)

    Timestamp of the message to add reaction to.

See Also:



23
24
25
26
27
# File 'lib/slack/web/api/endpoints/reactions.rb', line 23

def reactions_add(options = {})
  throw ArgumentError.new('Required arguments :name missing') if options[:name].nil?
  options = options.merge(channel: channels_id(options)['channel']['id']) if options[:channel]
  post('reactions.add', options)
end

#reactions_get(options = {}) ⇒ Object

Gets reactions for an item.

Parameters:

  • options (Hash) (defaults to: {})

    a customizable set of options

Options Hash (options):

  • :channel (channel)

    Channel where the message to get reactions for was posted.

  • :file (file)

    File to get reactions for.

  • :file_comment (Object)

    File comment to get reactions for.

  • :full (Object)

    If true always return the complete reaction list.

  • :timestamp (Object)

    Timestamp of the message to get reactions for.

See Also:



44
45
46
47
# File 'lib/slack/web/api/endpoints/reactions.rb', line 44

def reactions_get(options = {})
  options = options.merge(channel: channels_id(options)['channel']['id']) if options[:channel]
  post('reactions.get', options)
end

#reactions_list(options = {}) ⇒ Object

Lists reactions made by a user.

Parameters:

  • options (Hash) (defaults to: {})

    a customizable set of options

Options Hash (options):

  • :full (Object)

    If true always return the complete reaction list.

  • :user (user)

    Show reactions made by this user. Defaults to the authed user.

See Also:



58
59
60
61
# File 'lib/slack/web/api/endpoints/reactions.rb', line 58

def reactions_list(options = {})
  options = options.merge(user: users_id(options)['user']['id']) if options[:user]
  post('reactions.list', options)
end

#reactions_remove(options = {}) ⇒ Object

Removes a reaction from an item.

Parameters:

  • options (Hash) (defaults to: {})

    a customizable set of options

Options Hash (options):

  • :name (Object)

    Reaction (emoji) name.

  • :channel (channel)

    Channel where the message to remove reaction from was posted.

  • :file (file)

    File to remove reaction from.

  • :file_comment (Object)

    File comment to remove reaction from.

  • :timestamp (Object)

    Timestamp of the message to remove reaction from.

See Also:



78
79
80
81
82
# File 'lib/slack/web/api/endpoints/reactions.rb', line 78

def reactions_remove(options = {})
  throw ArgumentError.new('Required arguments :name missing') if options[:name].nil?
  options = options.merge(channel: channels_id(options)['channel']['id']) if options[:channel]
  post('reactions.remove', options)
end