1
0
Fork 0
mirror of https://github.com/mastodon/mastodon.git synced 2025-02-04 03:28:13 +01:00

Fix paths with url-encoded @ to redirect to the correct path ()

This commit is contained in:
Thijs Kinkhorst 2023-02-14 19:05:57 +01:00 committed by Claire
parent 3f2e31800e
commit 40ae8d5e03

View file

@ -110,6 +110,8 @@ Rails.application.routes.draw do
resource :inbox, only: [:create], module: :activitypub
get '/:encoded_at(*path)', to: redirect("/@%{path}"), constraints: { encoded_at: /%40/ }
constraints(username: /[^@\/.]+/) do
get '/@:username', to: 'accounts#show', as: :short_account
get '/@:username/with_replies', to: 'accounts#show', as: :short_account_with_replies