From 79cc6792a16c75c725c5c361a42c582cdf613cf6 Mon Sep 17 00:00:00 2001 From: multiple creatures Date: Mon, 29 Apr 2019 23:05:24 -0500 Subject: Adjust search limits and ordering. --- app/controllers/api/v1/search_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/controllers') 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! -- cgit