mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-05 14:36:04 +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
|