2017-09-23 01:57:23 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Api::V1::CustomEmojisController < Api::BaseController
|
|
|
|
respond_to :json
|
|
|
|
|
|
|
|
def index
|
2019-01-06 23:52:58 +01: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-23 01:57:23 +02:00
|
|
|
end
|
|
|
|
end
|