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