You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
362 B
10 lines
362 B
# frozen_string_literal: true |
|
|
|
class Api::V1::CustomEmojisController < Api::BaseController |
|
vary_by '', unless: :disallow_unauthenticated_api_access? |
|
|
|
def index |
|
cache_even_if_authenticated! unless disallow_unauthenticated_api_access? |
|
render_with_cache(each_serializer: REST::CustomEmojiSerializer) { CustomEmoji.listed.includes(:category) } |
|
end |
|
end
|
|
|