mirror of
https://github.com/funamitech/mastodon
synced 2024-12-11 21:29:17 +09: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
|