mirror of
				https://github.com/mastodon/mastodon.git
				synced 2025-10-31 21:27:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			211 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			211 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # frozen_string_literal: true
 | |
| 
 | |
| class Api::V2::SearchController < Api::V1::SearchController
 | |
|   def index
 | |
|     @search = Search.new(search)
 | |
|     render json: @search, serializer: REST::V2::SearchSerializer
 | |
|   end
 | |
| end
 | 
