2016-11-15 16:56:29 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-22 16:00:20 +01:00
|
|
|
class HomeController < ApplicationController
|
2022-10-06 02:26:34 +02:00
|
|
|
include WebAppControllerConcern
|
|
|
|
|
2022-09-29 04:39:33 +02:00
|
|
|
before_action :set_instance_presenter
|
2016-03-06 17:52:23 +01:00
|
|
|
|
2022-10-20 14:35:29 +02:00
|
|
|
def index
|
2023-01-10 15:23:33 +01:00
|
|
|
if !user_signed_in?
|
|
|
|
redirect_to "/auth/sign_up"
|
|
|
|
end
|
2022-10-20 14:35:29 +02:00
|
|
|
end
|
2016-09-29 21:28:21 +02:00
|
|
|
|
2016-08-26 19:12:19 +02:00
|
|
|
private
|
|
|
|
|
2022-09-29 04:39:33 +02:00
|
|
|
def set_instance_presenter
|
|
|
|
@instance_presenter = InstancePresenter.new
|
|
|
|
end
|
2016-02-22 16:00:20 +01:00
|
|
|
end
|