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'
|
|
|
|
|
|
|
|
before_action :check_enabled
|
|
|
|
before_action :set_body_classes
|
|
|
|
before_action :set_instance_presenter
|
|
|
|
|
|
|
|
def show
|
2019-07-08 03:03:45 -07:00
|
|
|
@initial_state_json = ActiveModelSerializers::SerializableResource.new(
|
|
|
|
InitialStatePresenter.new(settings: { known_fediverse: Setting.show_known_fediverse_at_about_page }, token: current_session&.token),
|
|
|
|
serializer: InitialStateSerializer
|
|
|
|
).to_json
|
2019-03-12 09:34:00 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def check_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
|