2016-11-15 15:56:29 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-22 15:00:20 +00:00
|
|
|
class HomeController < ApplicationController
|
2022-10-06 00:26:34 +00:00
|
|
|
include WebAppControllerConcern
|
|
|
|
|
2022-09-29 02:39:33 +00:00
|
|
|
before_action :set_instance_presenter
|
2016-03-06 16:52:23 +00:00
|
|
|
|
2022-10-20 12:35:29 +00:00
|
|
|
def index
|
|
|
|
expires_in 0, public: true unless user_signed_in?
|
|
|
|
end
|
2016-09-29 19:28:21 +00:00
|
|
|
|
2016-08-26 17:12:19 +00:00
|
|
|
private
|
|
|
|
|
2022-09-29 02:39:33 +00:00
|
|
|
def set_instance_presenter
|
|
|
|
@instance_presenter = InstancePresenter.new
|
|
|
|
end
|
2016-02-22 15:00:20 +00:00
|
|
|
end
|