Redirect user profile page to short URL when HTML format (#4328)

This commit is contained in:
Yamagishi Kazutoshi 2017-07-24 15:46:29 +09:00 committed by Eugen Rochko
parent 4b4ea1f929
commit ef16089c6d
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ Rails.application.routes.draw do
confirmations: 'auth/confirmations',
}
get '/users/:username', to: redirect('/@%{username}'), constraints: lambda { |req| req.format.nil? }
get '/users/:username', to: redirect('/@%{username}'), constraints: lambda { |req| req.format.nil? || req.format.html? }
resources :accounts, path: 'users', only: [:show], param: :username do
resources :stream_entries, path: 'updates', only: [:show] do