module Mastodon::REST::CustomEmojis

Public Instance Methods

custom_emojis() click to toggle source

Get a list of custom emojis on the server @return [Mastodon::Collection<Mastodon::Emoji>]

# File lib/mastodon/rest/custom_emojis.rb, line 11
def custom_emojis
  perform_request_with_collection('/api/v1/custom_emojis', {}, Mastodon::Emoji)
end