This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2022-09-29 06:22:12 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class PrivacyController < ApplicationController
|
2022-10-08 06:01:11 +02:00
|
|
|
include WebAppControllerConcern
|
2022-09-29 06:22:12 +02:00
|
|
|
|
|
|
|
skip_before_action :require_functional!
|
|
|
|
|
2022-10-20 14:35:29 +02:00
|
|
|
before_action :set_instance_presenter
|
|
|
|
|
2022-10-08 06:01:11 +02:00
|
|
|
def show
|
|
|
|
expires_in 0, public: true if current_account.nil?
|
2022-09-29 06:22:12 +02:00
|
|
|
end
|
2022-10-20 14:35:29 +02:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def set_instance_presenter
|
|
|
|
@instance_presenter = InstancePresenter.new
|
|
|
|
end
|
2022-09-29 06:22:12 +02:00
|
|
|
end
|