diff options
author | prplecake <me@prplecake.com> | 2022-11-02 03:20:47 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-02 09:20:47 +0100 |
commit | f359b15303e243b94c6923f789c5ae80330d5320 (patch) | |
tree | 68444b6002573357c7adc6b7baef33ec155558f1 /app/controllers/api/v1 | |
parent | 56eb1da0f5a794f0aa6cfb640d60e78252d4cb75 (diff) |
Allow number of trending hashtags to be customizable (#1884)
Diffstat (limited to 'app/controllers/api/v1')
-rw-r--r-- | app/controllers/api/v1/trends/tags_controller.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/api/v1/trends/tags_controller.rb b/app/controllers/api/v1/trends/tags_controller.rb index 21adfa2a1..885a4ad7e 100644 --- a/app/controllers/api/v1/trends/tags_controller.rb +++ b/app/controllers/api/v1/trends/tags_controller.rb @@ -5,7 +5,7 @@ class Api::V1::Trends::TagsController < Api::BaseController after_action :insert_pagination_headers - DEFAULT_TAGS_LIMIT = 10 + DEFAULT_TAGS_LIMIT = (ENV['MAX_TRENDING_TAGS'] || 10).to_i def index render json: @tags, each_serializer: REST::TagSerializer, relationships: TagRelationshipsPresenter.new(@tags, current_user&.account_id) |