module Slack::Endpoint::Emoji
Public Instance Methods
emoji_list(options={})
click to toggle source
This method lists the custom emoji for a team.
@see api.slack.com/methods/emoji.list @see github.com/aki017/slack-api-docs/blob/master/methods/emoji.list.md @see github.com/aki017/slack-api-docs/blob/master/methods/emoji.list.json
# File lib/slack/endpoint/emoji.rb, line 12 def emoji_list(options={}) options[:attachments] = options[:attachments].to_json if Hash === options[:attachments] post("emoji.list", options) end