mastodon/app/controllers/public_timelines_controller.rb

27 lines
528 B
Ruby
Raw Permalink Normal View History

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