Add env variable to control search limit
Changed the default search limit to allow a variable called MAX_SEARCH_RESULTS in the .env.production file to change the maximum search results limit.
This commit is contained in:
		
							parent
							
								
									249b7c7c12
								
							
						
					
					
						commit
						0ed0c77266
					
				@ -3,7 +3,7 @@
 | 
				
			|||||||
class Api::V1::SearchController < Api::BaseController
 | 
					class Api::V1::SearchController < Api::BaseController
 | 
				
			||||||
  include Authorization
 | 
					  include Authorization
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  RESULTS_LIMIT = 20
 | 
					  RESULTS_LIMIT = (ENV['MAX_SEARCH_RESULTS'] || 20).to_i
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  before_action -> { doorkeeper_authorize! :read, :'read:search' }
 | 
					  before_action -> { doorkeeper_authorize! :read, :'read:search' }
 | 
				
			||||||
  before_action :require_user!
 | 
					  before_action :require_user!
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user