diff options
author | multiple creatures <dev@multiple-creature.party> | 2019-04-29 23:05:24 -0500 |
---|---|---|
committer | multiple creatures <dev@multiple-creature.party> | 2019-05-21 03:16:22 -0500 |
commit | 79cc6792a16c75c725c5c361a42c582cdf613cf6 (patch) | |
tree | c2ffdb1c412f3a7b94f41a97e39161e96ef7edd8 /app/controllers/api | |
parent | cfaed183aadc4306cec2a2004c20c5b107467a7a (diff) |
Adjust search limits and ordering.
Diffstat (limited to 'app/controllers/api')
-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 37b45221b..639e71493 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 = 66 + RESULTS_LIMIT = 100 before_action -> { doorkeeper_authorize! :read, :'read:search' } before_action :require_user! |