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
|
|
|
|
|
2019-05-03 11:39:19 -07:00
|
|
|
skip_before_action :set_cache_headers
|
|
|
|
|
2017-09-22 16:57:23 -07:00
|
|
|
def index
|
2019-07-21 13:32:16 -07:00
|
|
|
expires_in 3.minutes, public: true
|
|
|
|
render_with_cache(each_serializer: REST::CustomEmojiSerializer) { CustomEmoji.local.where(disabled: false).includes(:category) }
|
2017-09-22 16:57:23 -07:00
|
|
|
end
|
|
|
|
end
|