This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2022-09-28 21:22:12 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class PrivacyController < ApplicationController
|
|
|
|
layout 'public'
|
|
|
|
|
2022-10-07 02:35:31 -07:00
|
|
|
before_action :set_pack
|
|
|
|
|
2022-09-28 21:22:12 -07:00
|
|
|
before_action :set_instance_presenter
|
|
|
|
before_action :set_expires_in
|
|
|
|
|
|
|
|
skip_before_action :require_functional!
|
|
|
|
|
|
|
|
def show; end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2022-10-07 02:35:31 -07:00
|
|
|
def set_pack
|
|
|
|
use_pack 'public'
|
|
|
|
end
|
|
|
|
|
2022-09-28 21:22:12 -07:00
|
|
|
def set_instance_presenter
|
|
|
|
@instance_presenter = InstancePresenter.new
|
|
|
|
end
|
|
|
|
|
|
|
|
def set_expires_in
|
|
|
|
expires_in 0, public: true
|
|
|
|
end
|
|
|
|
end
|