2022-09-29 07:22:12 +03:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class PrivacyController < ApplicationController
|
2022-10-08 07:01:11 +03:00
|
|
|
include WebAppControllerConcern
|
2022-09-29 07:22:12 +03:00
|
|
|
|
|
|
|
skip_before_action :require_functional!
|
|
|
|
|
2022-10-08 07:01:11 +03:00
|
|
|
def show
|
|
|
|
expires_in 0, public: true if current_account.nil?
|
2022-09-29 07:22:12 +03:00
|
|
|
end
|
|
|
|
end
|