2017-09-22 23:57:23 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Api::V1::CustomEmojisController < Api::BaseController
|
2023-04-28 08:01:38 +00:00
|
|
|
vary_by '', unless: :disallow_unauthenticated_api_access?
|
2023-04-25 13:41:34 +00:00
|
|
|
|
2017-09-22 23:57:23 +00:00
|
|
|
def index
|
2023-04-28 08:01:38 +00:00
|
|
|
cache_even_if_authenticated! unless disallow_unauthenticated_api_access?
|
2019-09-13 14:01:09 +00:00
|
|
|
render_with_cache(each_serializer: REST::CustomEmojiSerializer) { CustomEmoji.listed.includes(:category) }
|
2017-09-22 23:57:23 +00:00
|
|
|
end
|
|
|
|
end
|