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