Fix /api/v1/streaming
sub-paths not being redirected (#23988)
This commit is contained in:
parent
282596a66e
commit
bbb7c54367
1 changed files with 3 additions and 1 deletions
|
@ -394,7 +394,9 @@ Rails.application.routes.draw do
|
|||
resources :list, only: :show
|
||||
end
|
||||
|
||||
resources :streaming, only: [:index]
|
||||
get '/streaming', to: 'streaming#index'
|
||||
get '/streaming/(*any)', to: 'streaming#index'
|
||||
|
||||
resources :custom_emojis, only: [:index]
|
||||
resources :suggestions, only: [:index, :destroy]
|
||||
resources :scheduled_statuses, only: [:index, :show, :update, :destroy]
|
||||
|
|
Loading…
Reference in a new issue