2022-09-29 04:22:12 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class PrivacyController < ApplicationController
|
2022-10-08 04:01:11 +00:00
|
|
|
include WebAppControllerConcern
|
2022-09-29 04:22:12 +00:00
|
|
|
|
|
|
|
skip_before_action :require_functional!
|
|
|
|
|
2022-10-08 04:01:11 +00:00
|
|
|
def show
|
2023-04-28 08:27:26 +00:00
|
|
|
expires_in(15.seconds, public: true, stale_while_revalidate: 30.seconds, stale_if_error: 1.day) unless user_signed_in?
|
2022-09-29 04:22:12 +00:00
|
|
|
end
|
|
|
|
end
|