diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2022-04-07 18:06:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-07 18:06:15 +0200 |
commit | 465ee7792ff48905088efdf3df6f718081b5e244 (patch) | |
tree | 509fe554be853d040199785a77b542c427a871b4 /app/controllers/api/v1/trends/links_controller.rb | |
parent | ebe01ea194104b14af6cd6abe6d20637f1a3e140 (diff) |
Fix pagination header on empty trends responses in REST API (#17986)
Diffstat (limited to 'app/controllers/api/v1/trends/links_controller.rb')
-rw-r--r-- | app/controllers/api/v1/trends/links_controller.rb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/app/controllers/api/v1/trends/links_controller.rb b/app/controllers/api/v1/trends/links_controller.rb index b1cde5a4b..2385fe438 100644 --- a/app/controllers/api/v1/trends/links_controller.rb +++ b/app/controllers/api/v1/trends/links_controller.rb @@ -36,13 +36,17 @@ class Api::V1::Trends::LinksController < Api::BaseController end def next_path - api_v1_trends_links_url pagination_params(offset: offset_param + limit_param(DEFAULT_LINKS_LIMIT)) + api_v1_trends_links_url pagination_params(offset: offset_param + limit_param(DEFAULT_LINKS_LIMIT)) if records_continue? end def prev_path api_v1_trends_links_url pagination_params(offset: offset_param - limit_param(DEFAULT_LINKS_LIMIT)) if offset_param > limit_param(DEFAULT_LINKS_LIMIT) end + def records_continue? + @links.size == limit_param(DEFAULT_LINKS_LIMIT) + end + def offset_param params[:offset].to_i end |