0
0
Fork 0

Add tuning documentation, add <content> tags back to most salmons,

make status pagination headers generation more lax about next page
existing
This commit is contained in:
Eugen Rochko 2017-02-25 03:34:37 +01:00
parent 9d4cad6307
commit 3e9d794ea5
9 changed files with 131 additions and 11 deletions

View file

@ -17,7 +17,7 @@ class Api::V1::NotificationsController < ApiController
set_counters_maps(statuses)
set_account_counters_maps(@notifications.map(&:from_account))
next_path = api_v1_notifications_url(max_id: @notifications.last.id) if @notifications.size == limit_param(DEFAULT_NOTIFICATIONS_LIMIT)
next_path = api_v1_notifications_url(max_id: @notifications.last.id) unless @notifications.empty?
prev_path = api_v1_notifications_url(since_id: @notifications.first.id) unless @notifications.empty?
set_pagination_headers(next_path, prev_path)