diff options
author | trwnh <a@trwnh.com> | 2022-11-17 03:54:10 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-17 10:54:10 +0100 |
commit | e1f819fd78c0c004c0629530203353fbf6d11a91 (patch) | |
tree | 428b6ece9d15815f46e77651e4d931f8ce203952 /app | |
parent | 654d348aac804b3f5f96f21399118f625121501f (diff) |
Fix pagination of followed tags (#20861)
* Fix missing pagination headers on followed tags * Fix typo
Diffstat (limited to 'app')
-rw-r--r-- | app/controllers/api/v1/followed_tags_controller.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/controllers/api/v1/followed_tags_controller.rb b/app/controllers/api/v1/followed_tags_controller.rb index f0dfd044c..eae2bdc01 100644 --- a/app/controllers/api/v1/followed_tags_controller.rb +++ b/app/controllers/api/v1/followed_tags_controller.rb @@ -3,11 +3,11 @@ class Api::V1::FollowedTagsController < Api::BaseController TAGS_LIMIT = 100 - before_action -> { doorkeeper_authorize! :follow, :read, :'read:follows' }, except: :show + before_action -> { doorkeeper_authorize! :follow, :read, :'read:follows' } before_action :require_user! before_action :set_results - after_action :insert_pagination_headers, only: :show + after_action :insert_pagination_headers def index render json: @results.map(&:tag), each_serializer: REST::TagSerializer, relationships: TagRelationshipsPresenter.new(@results.map(&:tag), current_user&.account_id) @@ -43,7 +43,7 @@ class Api::V1::FollowedTagsController < Api::BaseController end def records_continue? - @results.size == limit_param(TAG_LIMIT) + @results.size == limit_param(TAGS_LIMIT) end def pagination_params(core_params) |