This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-09-22 16:57:23 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Api::V1::CustomEmojisController < Api::BaseController
|
|
|
|
respond_to :json
|
|
|
|
|
|
|
|
def index
|
2019-01-06 14:52:58 -08:00
|
|
|
render_cached_json('api:v1:custom_emojis', expires_in: 1.minute) do
|
|
|
|
ActiveModelSerializers::SerializableResource.new(CustomEmoji.local.where(disabled: false), each_serializer: REST::CustomEmojiSerializer)
|
|
|
|
end
|
2017-09-22 16:57:23 -07:00
|
|
|
end
|
|
|
|
end
|