diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2019-08-08 23:04:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-08 23:04:04 +0200 |
commit | 699db454c370247684243d7497f6ebacefbb2a57 (patch) | |
tree | 315cf335cb380ea4c03e019e9a78b7e521a5a361 /app | |
parent | 898dacf83eaaec8ba02d4e44dd9901521d79a898 (diff) |
Fix pinned statuses API returning pagination headers (#11526)
Fix #10227
Diffstat (limited to 'app')
-rw-r--r-- | app/controllers/api/v1/accounts/statuses_controller.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/controllers/api/v1/accounts/statuses_controller.rb b/app/controllers/api/v1/accounts/statuses_controller.rb index 8cd8f8e79..13cb4caf1 100644 --- a/app/controllers/api/v1/accounts/statuses_controller.rb +++ b/app/controllers/api/v1/accounts/statuses_controller.rb @@ -3,7 +3,8 @@ class Api::V1::Accounts::StatusesController < Api::BaseController before_action -> { authorize_if_got_token! :read, :'read:statuses' } before_action :set_account - after_action :insert_pagination_headers + + after_action :insert_pagination_headers, unless: -> { truthy_param?(:pinned) } respond_to :json |