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