Use with_options
for shared settings options in routes (#30847)
This commit is contained in:
parent
befb44a08c
commit
ae667624ac
2 changed files with 8 additions and 4 deletions
|
@ -44,8 +44,10 @@ namespace :api, format: false do
|
|||
resources :list, only: :show
|
||||
end
|
||||
|
||||
get '/streaming', to: 'streaming#index'
|
||||
get '/streaming/(*any)', to: 'streaming#index'
|
||||
with_options to: 'streaming#index' do
|
||||
get '/streaming'
|
||||
get '/streaming/(*any)'
|
||||
end
|
||||
|
||||
resources :custom_emojis, only: [:index]
|
||||
resources :suggestions, only: [:index, :destroy]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue