2017-09-22 23:57:23 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Api::V1::CustomEmojisController < Api::BaseController
|
2019-05-03 18:39:19 +00:00
|
|
|
skip_before_action :set_cache_headers
|
|
|
|
|
2017-09-22 23:57:23 +00:00
|
|
|
def index
|
2019-07-21 20:32:16 +00:00
|
|
|
expires_in 3.minutes, public: true
|
2019-09-13 14:01:09 +00:00
|
|
|
render_with_cache(each_serializer: REST::CustomEmojiSerializer) { CustomEmoji.listed.includes(:category) }
|
2017-09-22 23:57:23 +00:00
|
|
|
end
|
|
|
|
end
|