2016-11-15 17:56:29 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-09-28 00:12:33 +03:00
|
|
|
class AboutController < ApplicationController
|
2022-10-13 15:42:37 +03:00
|
|
|
include WebAppControllerConcern
|
2020-12-10 07:27:26 +02:00
|
|
|
|
2022-10-13 15:42:37 +03:00
|
|
|
skip_before_action :require_functional!
|
2019-03-12 18:34:00 +02:00
|
|
|
|
2022-10-13 15:42:37 +03:00
|
|
|
def show
|
2023-04-28 11:27:26 +03:00
|
|
|
expires_in(15.seconds, public: true, stale_while_revalidate: 30.seconds, stale_if_error: 1.day) unless user_signed_in?
|
2019-07-08 13:03:45 +03:00
|
|
|
end
|
2016-09-28 00:12:33 +03:00
|
|
|
end
|