about summary refs log tree commit diff
path: root/config
diff options
context:
space:
mode:
authorDaigo 3 Dango <zunda@users.noreply.github.com>2017-06-05 10:09:29 +0000
committerEugen Rochko <eugen@zeonfederated.com>2017-06-05 12:09:29 +0200
commit2985d089517a4f83af1cff264d926955f74da2fd (patch)
tree8f07b8367dde89cb1441bd1774af8ce455a50330 /config
parent66ca7157db9c9ea24fd18a624a1a642c9f7a419a (diff)
Redirect to streaming_api_base_url (#3579)
* Redirect to streaming_api_base_url

When Rails receives a request to streaming API, it most likely
means that there is another host which is configured to respond
to it. This is to redirect clients to that host if
`STREAMING_API_BASE_URL` is set as another host.

* Use the new Ruby 1.9 hash syntax
Diffstat (limited to 'config')
-rw-r--r--config/routes.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/config/routes.rb b/config/routes.rb
index 5c1c8e594..7a2286f92 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -141,6 +141,7 @@ Rails.application.routes.draw do
         resource :public, only: :show, controller: :public
         resources :tag, only: :show
       end
+      resources :streaming,  only: [:index]
 
       get '/search', to: 'search#index', as: :search