This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2019-03-12 09:34:00 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class PublicTimelinesController < ApplicationController
|
|
|
|
layout 'public'
|
|
|
|
|
2019-07-30 02:10:46 -07:00
|
|
|
before_action :authenticate_user!, if: :whitelist_mode?
|
|
|
|
before_action :require_enabled!
|
2019-03-12 09:34:00 -07:00
|
|
|
before_action :set_body_classes
|
|
|
|
before_action :set_instance_presenter
|
|
|
|
|
2019-08-16 10:15:05 -07:00
|
|
|
def show; end
|
2019-03-12 09:34:00 -07:00
|
|
|
|
|
|
|
private
|
|
|
|
|
2019-07-30 02:10:46 -07:00
|
|
|
def require_enabled!
|
2019-07-08 03:03:45 -07:00
|
|
|
not_found unless Setting.timeline_preview
|
2019-03-12 09:34:00 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
def set_body_classes
|
|
|
|
@body_classes = 'with-modals'
|
|
|
|
end
|
|
|
|
|
|
|
|
def set_instance_presenter
|
|
|
|
@instance_presenter = InstancePresenter.new
|
|
|
|
end
|
|
|
|
end
|