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