about summary refs log tree commit diff
path: root/app/controllers/api/v2/search_controller.rb
blob: 815c04cefae101e92ea8ef4666338ed0c0ee0925 (plain) (blame)
1
2
3
4
5
6
7
8
# frozen_string_literal: true

class Api::V2::SearchController < Api::V1::SearchController
  def index
    @search = Search.new(search_results)
    render json: @search, serializer: REST::V2::SearchSerializer, monsterfork_api: monsterfork_api
  end
end