~cytrogen/masto-fe

8d0c69529acbcd896155e466e29d73b84988d180 — Eugen Rochko 2 years ago fdc3ff7
Change markers API to use a replica (#25851)

1 files changed, 4 insertions(+), 1 deletions(-)

M app/controllers/api/v1/markers_controller.rb
M app/controllers/api/v1/markers_controller.rb => app/controllers/api/v1/markers_controller.rb +4 -1
@@ 7,7 7,10 @@ class Api::V1::MarkersController < Api::BaseController
  before_action :require_user!

  def index
    @markers = current_user.markers.where(timeline: Array(params[:timeline])).index_by(&:timeline)
    with_read_replica do
      @markers = current_user.markers.where(timeline: Array(params[:timeline])).index_by(&:timeline)
    end

    render json: serialize_map(@markers)
  end