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