2016-11-15 15:56:29 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-09-27 22:12:33 +01:00
|
|
|
class AboutController < ApplicationController
|
2022-10-13 13:42:37 +01:00
|
|
|
include WebAppControllerConcern
|
2020-12-10 05:27:26 +00:00
|
|
|
|
2022-10-13 13:42:37 +01:00
|
|
|
skip_before_action :require_functional!
|
2019-03-12 16:34:00 +00:00
|
|
|
|
2022-10-20 13:35:29 +01:00
|
|
|
before_action :set_instance_presenter
|
|
|
|
|
2022-10-13 13:42:37 +01:00
|
|
|
def show
|
|
|
|
expires_in 0, public: true unless user_signed_in?
|
2019-07-08 11:03:45 +01:00
|
|
|
end
|
2022-10-20 13:35:29 +01:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def set_instance_presenter
|
|
|
|
@instance_presenter = InstancePresenter.new
|
|
|
|
end
|
2016-09-27 22:12:33 +01:00
|
|
|
end
|