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
-
#reactions_add(options = {}) ⇒ Object
This method adds a reaction (emoji) to an item (file, file comment, channel message, group message, or direct message).
-
#reactions_get(options = {}) ⇒ Object
This method returns a list of all reactions for a single item (file, file comment, channel message, group message, or direct message).
-
#reactions_list(options = {}) ⇒ Object
This method returns a list of all items (file, file comment, channel message, group message, or direct message) reacted to by a user.
-
#reactions_remove(options = {}) ⇒ Object
This method removes a reaction (emoji) from an item (file, file comment, channel message, group message, or direct message).
Instance Method Details
#reactions_add(options = {}) ⇒ Object
This method adds a reaction (emoji) to an item (file, file comment, channel message, group message, or direct message). One of file, file_comment, or the combination of channel and timestamp must be specified.
24 25 26 27 |
# File 'lib/slack/web/api/endpoints/reactions.rb', line 24 def reactions_add( = {}) throw ArgumentError.new('Required arguments :name missing') if [:name].nil? post('reactions.add', ) end |
#reactions_get(options = {}) ⇒ Object
This method returns a list of all reactions for a single item (file, file comment, channel message, group message, or direct message).
44 45 46 |
# File 'lib/slack/web/api/endpoints/reactions.rb', line 44 def reactions_get( = {}) post('reactions.get', ) end |
#reactions_list(options = {}) ⇒ Object
This method returns a list of all items (file, file comment, channel message, group message, or direct message) reacted to by a user.
57 58 59 |
# File 'lib/slack/web/api/endpoints/reactions.rb', line 57 def reactions_list( = {}) post('reactions.list', ) end |
#reactions_remove(options = {}) ⇒ Object
This method removes a reaction (emoji) from an item (file, file comment, channel message, group message, or direct message). One of file, file_comment, or the combination of channel and timestamp must be specified.
77 78 79 80 |
# File 'lib/slack/web/api/endpoints/reactions.rb', line 77 def reactions_remove( = {}) throw ArgumentError.new('Required arguments :name missing') if [:name].nil? post('reactions.remove', ) end |