2022-10-08 06:01:11 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2023-11-10 13:46:00 +01:00
|
|
|
class Api::V1::Instances::PrivacyPoliciesController < Api::V1::Instances::BaseController
|
2022-10-08 06:01:11 +02:00
|
|
|
before_action :set_privacy_policy
|
|
|
|
|
|
|
|
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
|