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