diff options
author | multiple creatures <dev@multiple-creature.party> | 2019-04-13 23:17:51 -0500 |
---|---|---|
committer | multiple creatures <dev@multiple-creature.party> | 2019-05-21 03:16:21 -0500 |
commit | dd5e02ad5d79e4fc2163a9bcd009859e9c2a4466 (patch) | |
tree | f8d2aa407ff53805408f0cbc17d7d25a7f28ea23 /app/controllers | |
parent | 4c170d2a98e4a289ad40580785cbeb892bd68eab (diff) |
Use PostgreSQL FTS for searches.
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 6131cbbb6..194e7c810 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 = 20 + RESULTS_LIMIT = 33 before_action -> { doorkeeper_authorize! :read, :'read:search' } before_action :require_user! |