Archived
2
0
Fork 0
This repository has been archived on 2024-06-09. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
mastodon/app/controllers/api/v1/custom_emojis_controller.rb

10 lines
271 B
Ruby

# frozen_string_literal: true
class Api::V1::CustomEmojisController < Api::BaseController
vary_by ''
def index
cache_even_if_authenticated!
render_with_cache(each_serializer: REST::CustomEmojiSerializer) { CustomEmoji.listed.includes(:category) }
end
end