Defect #4182
closedLinks on locked users lead to 404 page
0%
Description
When you lock a user account (for instance because person has left the team), there are still many links in every issues, wiki pages, comments left by this person. When you click on them, you are redirected to a 404 page, which is not very easy to understand for users imho.
I think this is because in UsersController#show, user is searched with the "active" scope, and there's a rescue ActiveRecord::RecordNotFound; render_404
at the end of the action. Maybe you could forget the "active" scope, and change the display after that with a specific error page ?
Any opinion on this ?
Updated by Jean-Philippe Lang about 15 years ago
I think that locked users profiles should stay hidden, especially because of the lack of user deletion feature.
But you're right, we shouldn't link a page that gives a 404. A simple fix would be to display locked users as text in ApplicationHelper#link_to_user
.
Updated by Jean-Philippe Lang about 15 years ago
- Status changed from New to Closed
- Target version set to 0.9.0
- Resolution set to Fixed
Fixed in r3024.