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-08 06:01:11 +02:00
|
|
|
def show
|
2023-04-28 10:27:26 +02:00
|
|
|
expires_in(15.seconds, public: true, stale_while_revalidate: 30.seconds, stale_if_error: 1.day) unless user_signed_in?
|
2022-09-29 06:22:12 +02:00
|
|
|
end
|
|
|
|
end
|