about summary refs log tree commit diff
path: root/app/controllers/api/v2/search_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/api/v2/search_controller.rb')
-rw-r--r--app/controllers/api/v2/search_controller.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/app/controllers/api/v2/search_controller.rb b/app/controllers/api/v2/search_controller.rb
new file mode 100644
index 000000000..2e91d68ee
--- /dev/null
+++ b/app/controllers/api/v2/search_controller.rb
@@ -0,0 +1,8 @@
+# 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