Use with_options for shared settings options in routes (#30847)

This commit is contained in:
Matt Jankowski 2024-11-07 05:07:04 -05:00 committed by GitHub
parent befb44a08c
commit ae667624ac
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 8 additions and 4 deletions

View file

@ -40,8 +40,10 @@ namespace :admin do
end
end
get '/settings', to: redirect('/admin/settings/branding')
get '/settings/edit', to: redirect('/admin/settings/branding')
with_options to: redirect('/admin/settings/branding') do
get '/settings'
get '/settings/edit'
end
namespace :settings do
resource :branding, only: [:show, :update], controller: 'branding'

View file

@ -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]