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

master
Yamagishi Kazutoshi 7 years ago committed by Eugen Rochko
parent 4b4ea1f929
commit ef16089c6d
  1. 2
      config/routes.rb

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

Loading…
Cancel
Save