2022-10-08 06:01:11 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Api::V1::Instances::PrivacyPoliciesController < Api::BaseController
|
2023-08-02 19:32:48 +02:00
|
|
|
skip_before_action :require_authenticated_user!, unless: :limited_federation_mode?
|
2022-10-08 06:01:11 +02:00
|
|
|
|
|
|
|
before_action :set_privacy_policy
|
|
|
|
|
2023-04-25 15:41:34 +02:00
|
|
|
vary_by ''
|
|
|
|
|
2022-10-08 06:01:11 +02:00
|
|
|
def show
|
2023-04-25 15:41:34 +02:00
|
|
|
cache_even_if_authenticated!
|
2022-10-08 06:01:11 +02:00
|
|
|
render json: @privacy_policy, serializer: REST::PrivacyPolicySerializer
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def set_privacy_policy
|
|
|
|
@privacy_policy = PrivacyPolicy.current
|
|
|
|
end
|
|
|
|
end
|