2017-09-22 18:57:23 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Api::V1::CustomEmojisController < Api::BaseController
|
2023-04-28 03:01:38 -05:00
|
|
|
vary_by '', unless: :disallow_unauthenticated_api_access?
|
2019-05-03 13:39:19 -05:00
|
|
|
|
2017-09-22 18:57:23 -05:00
|
|
|
def index
|
2023-04-28 03:01:38 -05:00
|
|
|
cache_even_if_authenticated! unless disallow_unauthenticated_api_access?
|
2023-07-06 19:24:01 -05:00
|
|
|
render_with_cache(each_serializer: REST::CustomEmojiSerializer) { CustomEmoji.listed.where(disabled: false).includes(:category) }
|
2017-09-22 18:57:23 -05:00
|
|
|
end
|
|
|
|
end
|