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