Skip to content
Snippets Groups Projects
Unverified Commit 59b24c36 authored by Claire's avatar Claire Committed by GitHub
Browse files

Fix `/api/v1/streaming` sub-paths not being redirected (#23988)

parent dfa1be4a
No related branches found
No related tags found
No related merge requests found
...@@ -472,7 +472,9 @@ Rails.application.routes.draw do ...@@ -472,7 +472,9 @@ Rails.application.routes.draw do
resources :list, only: :show resources :list, only: :show
end end
resources :streaming, only: [:index] get '/streaming', to: 'streaming#index'
get '/streaming/(*any)', to: 'streaming#index'
resources :custom_emojis, only: [:index] resources :custom_emojis, only: [:index]
resources :suggestions, only: [:index, :destroy] resources :suggestions, only: [:index, :destroy]
resources :scheduled_statuses, only: [:index, :show, :update, :destroy] resources :scheduled_statuses, only: [:index, :show, :update, :destroy]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment