This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2017-09-23 01:57:23 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Api::V1::CustomEmojisController < Api::BaseController
|
2023-04-25 15:41:34 +02:00
|
|
|
vary_by ''
|
|
|
|
|
2017-09-23 01:57:23 +02:00
|
|
|
def index
|
2023-04-25 15:41:34 +02:00
|
|
|
cache_even_if_authenticated!
|
2019-09-13 16:01:09 +02:00
|
|
|
render_with_cache(each_serializer: REST::CustomEmojiSerializer) { CustomEmoji.listed.includes(:category) }
|
2017-09-23 01:57:23 +02:00
|
|
|
end
|
|
|
|
end
|