0
0
Fork 0

Remove some n+1 queries from notifications API

This commit is contained in:
Eugen Rochko 2016-11-21 15:16:04 +01:00
parent e8c27767aa
commit 52119104b9
2 changed files with 7 additions and 1 deletions

View file

@ -9,6 +9,8 @@ class Api::V1::NotificationsController < ApiController
def index
@notifications = Notification.where(account: current_account).with_includes.paginate_by_max_id(20, params[:max_id], params[:since_id])
set_maps(@notifications.select { |n| !n.target_status.nil? }.map(&:target_status))
next_path = api_v1_notifications_url(max_id: @notifications.last.id) if @notifications.size == 20
prev_path = api_v1_notifications_url(since_id: @notifications.first.id) unless @notifications.empty?