Redmine 3.2 – Redirect Users to my/page after Login
private issue tracking, user dashboard
Do you want to redirect users to their custom page/issue dashboard after login ? This is especially useful in case your redmine installation is set to private (login required).
Change the home Route#
Edit config/routes.rb
# comment out this line # root :to => 'welcome#index', :as => 'home' # add the following line (keep the identation!) root :to => 'my#page', :as => 'home'
Ready! Just restart your Redmine service to apply the changes