2016-11-15 07:56:29 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-22 07:00:20 -08:00
|
|
|
class HomeController < ApplicationController
|
2022-10-05 17:26:34 -07:00
|
|
|
include WebAppControllerConcern
|
|
|
|
|
2020-07-07 06:26:31 -07:00
|
|
|
before_action :redirect_unauthenticated_to_permalinks!
|
2022-09-28 19:39:33 -07:00
|
|
|
before_action :set_instance_presenter
|
2016-03-06 08:52:23 -08:00
|
|
|
|
2022-10-05 17:26:34 -07:00
|
|
|
def index; end
|
2016-09-29 12:28:21 -07:00
|
|
|
|
2016-08-26 10:12:19 -07:00
|
|
|
private
|
|
|
|
|
2020-07-07 06:26:31 -07:00
|
|
|
def redirect_unauthenticated_to_permalinks!
|
2017-09-14 15:57:08 -07:00
|
|
|
return if user_signed_in?
|
|
|
|
|
2022-09-28 19:39:33 -07:00
|
|
|
redirect_path = PermalinkRedirector.new(request.path).redirect_path
|
2017-07-08 05:51:05 -07:00
|
|
|
|
2022-09-28 19:39:33 -07:00
|
|
|
redirect_to(redirect_path) if redirect_path.present?
|
2017-09-14 15:57:08 -07:00
|
|
|
end
|
2018-04-17 04:51:01 -07:00
|
|
|
|
2022-09-28 19:39:33 -07:00
|
|
|
def set_instance_presenter
|
|
|
|
@instance_presenter = InstancePresenter.new
|
|
|
|
end
|
2016-02-22 07:00:20 -08:00
|
|
|
end
|