Fix `GET /api/v1/trends/tags` missing `offset` param in REST API (#17973)

local
Eugen Rochko 2 years ago committed by GitHub
parent 04b4b541f8
commit d116cb7733
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      app/controllers/api/v1/trends/tags_controller.rb

@ -16,7 +16,7 @@ class Api::V1::Trends::TagsController < Api::BaseController
def set_tags
@tags = begin
if Setting.trends
Trends.tags.query.allowed.limit(limit_param(DEFAULT_TAGS_LIMIT))
Trends.tags.query.allowed.offset(offset_param).limit(limit_param(DEFAULT_TAGS_LIMIT))
else
[]
end

Loading…
Cancel
Save