1
0
Fork 0
mirror of https://github.com/mastodon/mastodon.git synced 2024-08-20 21:08:15 -07:00

Keep with_read_replica in main action

This commit is contained in:
Matt Jankowski 2024-05-03 09:22:59 -04:00
parent f30e4b975c
commit 52b9e08bad

View file

@ -7,7 +7,9 @@ class Api::V1::MarkersController < Api::BaseController
before_action :require_user!
def index
@markers = current_user_markers
with_read_replica do
@markers = current_user_markers
end
render json: marker_timeline_presenter, serializer: REST::MarkerTimelineSerializer
end
@ -25,9 +27,7 @@ class Api::V1::MarkersController < Api::BaseController
end
def current_user_markers
with_read_replica do
current_user.markers.where(timeline: Array(params[:timeline]))
end
current_user.markers.where(timeline: Array(params[:timeline]))
end
def create_markers_from_params