Use with_options for shared option in accounts#show routing block (#28914)

This commit is contained in:
Matt Jankowski 2024-03-14 06:03:38 -04:00 committed by GitHub
parent 30483d618f
commit 049d9171eb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -142,10 +142,12 @@ Rails.application.routes.draw do
get '/:encoded_at(*path)', to: redirect("/@%{path}"), constraints: { encoded_at: /%40/ }
constraints(username: %r{[^@/.]+}) do
get '/@:username', to: 'accounts#show', as: :short_account
get '/@:username/with_replies', to: 'accounts#show', as: :short_account_with_replies
get '/@:username/media', to: 'accounts#show', as: :short_account_media
get '/@:username/tagged/:tag', to: 'accounts#show', as: :short_account_tag
with_options to: 'accounts#show' do
get '/@:username', as: :short_account
get '/@:username/with_replies', as: :short_account_with_replies
get '/@:username/media', as: :short_account_media
get '/@:username/tagged/:tag', as: :short_account_tag
end
end
constraints(account_username: %r{[^@/.]+}) do