Allow number of trending hashtags to be customizable (#1884)
This commit is contained in:
@ -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)
|
||||
|
Reference in New Issue
Block a user