2022-10-13 05:42:37 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2023-11-10 04:46:00 -08:00
|
|
|
class Api::V1::Instances::ExtendedDescriptionsController < Api::V1::Instances::BaseController
|
2023-04-25 13:14:44 -07:00
|
|
|
skip_around_action :set_locale
|
2022-10-13 05:42:37 -07:00
|
|
|
|
|
|
|
before_action :set_extended_description
|
|
|
|
|
2023-04-25 13:14:44 -07:00
|
|
|
# Override `current_user` to avoid reading session cookies unless in whitelist mode
|
|
|
|
def current_user
|
2023-08-02 10:32:48 -07:00
|
|
|
super if limited_federation_mode?
|
2023-04-25 13:14:44 -07:00
|
|
|
end
|
|
|
|
|
2022-10-13 05:42:37 -07:00
|
|
|
def show
|
2023-04-25 06:41:34 -07:00
|
|
|
cache_even_if_authenticated!
|
2022-10-13 05:42:37 -07:00
|
|
|
render json: @extended_description, serializer: REST::ExtendedDescriptionSerializer
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def set_extended_description
|
|
|
|
@extended_description = ExtendedDescription.current
|
|
|
|
end
|
|
|
|
end
|