about summary refs log tree commit diff
path: root/app/controllers/api/v1/streaming_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/api/v1/streaming_controller.rb')
-rw-r--r--app/controllers/api/v1/streaming_controller.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/app/controllers/api/v1/streaming_controller.rb b/app/controllers/api/v1/streaming_controller.rb
new file mode 100644
index 000000000..377951472
--- /dev/null
+++ b/app/controllers/api/v1/streaming_controller.rb
@@ -0,0 +1,15 @@
+# frozen_string_literal: true
+
+class Api::V1::StreamingController < ApiController
+  respond_to :json
+
+  def index
+    if Rails.configuration.x.streaming_api_base_url != request.host
+      uri = URI.parse(request.url)
+      uri.host = URI.parse(Rails.configuration.x.streaming_api_base_url).host
+      redirect_to uri.to_s, status: 301
+    else
+      raise ActiveRecord::RecordNotFound
+    end
+  end
+end