2019-03-12 16:34:00 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class PublicTimelinesController < ApplicationController
|
|
|
|
layout 'public'
|
|
|
|
|
2019-07-30 10:10:46 +01:00
|
|
|
before_action :authenticate_user!, if: :whitelist_mode?
|
|
|
|
before_action :require_enabled!
|
2019-03-12 16:34:00 +00:00
|
|
|
before_action :set_body_classes
|
|
|
|
before_action :set_instance_presenter
|
|
|
|
|
2019-08-16 18:15:05 +01:00
|
|
|
def show; end
|
2019-03-12 16:34:00 +00:00
|
|
|
|
|
|
|
private
|
|
|
|
|
2019-07-30 10:10:46 +01:00
|
|
|
def require_enabled!
|
2019-07-08 11:03:45 +01:00
|
|
|
not_found unless Setting.timeline_preview
|
2019-03-12 16:34:00 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def set_body_classes
|
|
|
|
@body_classes = 'with-modals'
|
|
|
|
end
|
|
|
|
|
|
|
|
def set_instance_presenter
|
|
|
|
@instance_presenter = InstancePresenter.new
|
|
|
|
end
|
|
|
|
end
|