about summary refs log tree commit diff
path: root/app/controllers
diff options
context:
space:
mode:
authormultiple creatures <dev@multiple-creature.party>2019-04-29 23:05:24 -0500
committermultiple creatures <dev@multiple-creature.party>2019-05-21 03:16:22 -0500
commit79cc6792a16c75c725c5c361a42c582cdf613cf6 (patch)
treec2ffdb1c412f3a7b94f41a97e39161e96ef7edd8 /app/controllers
parentcfaed183aadc4306cec2a2004c20c5b107467a7a (diff)
Adjust search limits and ordering.
Diffstat (limited to 'app/controllers')
-rw-r--r--app/controllers/api/v1/search_controller.rb2
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!