mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-23 18:08:06 +01:00
46b97c9826
Fixes incorrect merge at 9eb149477a
11 lines
438 B
Ruby
11 lines
438 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Api::V1::CustomEmojisController < Api::BaseController
|
|
vary_by '', unless: :disallow_unauthenticated_api_access?
|
|
skip_before_action :require_authenticated_user!, unless: :whitelist_mode?
|
|
|
|
def index
|
|
cache_even_if_authenticated! unless disallow_unauthenticated_api_access?
|
|
render_with_cache(each_serializer: REST::CustomEmojiSerializer) { CustomEmoji.listed.includes(:category) }
|
|
end
|
|
end
|