diff options
author | multiple creatures <dev@multiple-creature.party> | 2019-04-14 01:24:45 -0500 |
---|---|---|
committer | multiple creatures <dev@multiple-creature.party> | 2019-05-21 03:16:21 -0500 |
commit | f344170fd0624987181aa4470b2a8ae9add8f27e (patch) | |
tree | 1e58e51714e5fe81540e55b0b18e45cc0c87a4f7 /app/controllers | |
parent | 6c7f1691eef8f2cfe299373560966bfac6219056 (diff) |
Raise max search result limit to 66 in API.
Diffstat (limited to 'app/controllers')
-rw-r--r-- | app/controllers/api/v1/search_controller.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/api/v1/search_controller.rb b/app/controllers/api/v1/search_controller.rb index 194e7c810..37b45221b 100644 --- a/app/controllers/api/v1/search_controller.rb +++ b/app/controllers/api/v1/search_controller.rb @@ -3,7 +3,7 @@ class Api::V1::SearchController < Api::BaseController include Authorization - RESULTS_LIMIT = 33 + RESULTS_LIMIT = 66 before_action -> { doorkeeper_authorize! :read, :'read:search' } before_action :require_user! |