module Slack::Web::Emoji

Module for the emoji methods.

Constants

SCOPE

Endpoint scope

Public Instance Methods

emoji_list(params = {}) click to toggle source

Lists custom emoji for a team.

@param [Hash] params

API call arguments

@see api.slack.com/methods/emoji.list

# File lib/slack/web/emoji.rb, line 17
def emoji_list(params = {})
  response = @session.do_post "#{SCOPE}.list", params
  Slack.parse_response(response)
end