2022-09-29 14:22:12 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class PrivacyController < ApplicationController
|
2022-10-08 15:01:11 +11:00
|
|
|
include WebAppControllerConcern
|
2022-09-29 14:22:12 +10:00
|
|
|
|
|
|
|
skip_before_action :require_functional!
|
|
|
|
|
2022-10-20 23:35:29 +11:00
|
|
|
before_action :set_instance_presenter
|
|
|
|
|
2022-10-08 15:01:11 +11:00
|
|
|
def show
|
|
|
|
expires_in 0, public: true if current_account.nil?
|
2022-09-29 14:22:12 +10:00
|
|
|
end
|
2022-10-20 23:35:29 +11:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def set_instance_presenter
|
|
|
|
@instance_presenter = InstancePresenter.new
|
|
|
|
end
|
2022-09-29 14:22:12 +10:00
|
|
|
end
|