/admin/users returns 404 not found.
Created by: hsanson
After upgrading to 4.2 I am no longer able to access the users administration page.
Started GET "/admin/users" for 124.35.146.2 at 2013-04-04 12:01:53 +0900
Processing by Admin::UsersController#index as HTML
Rendered admin/users/index.html.haml within layouts/admin (8.3ms)
Completed 500 Internal Server Error in 11ms
ActionController::RoutingError (No route matches {:action=>"show", :controller=>"admin/users", :id=>#<User id: 1, email: "[email protected]", encrypted_password: "secret", reset_password_token: nil, reset_password_sent_at: nil, remember_created_at: nil, sign_in_count: 3, current_sign_in_at: "2012-10-29 15:12:53", last_sign_in_at: "2012-10-29 14:48:15", current_sign_in_ip: "182.249.242.5", last_sign_in_ip: "182.249.242.5", created_at: "2012-10-29 14:34:06", updated_at: "2012-10-29 15:12:53", name: "Administrator", admin: true, projects_limit: 10000, skype: "", linkedin: "", twitter: "", authentication_token: "sd5MRFfQyW4TrxmQp48h", dark_scheme: false, theme_id: 1, bio: nil, blocked: false, failed_attempts: 0, locked_at: nil, extern_uid: nil, provider: nil, username: nil, can_create_group: true, can_create_team: true>}):
app/views/admin/users/index.html.haml:43:in `block in _app_views_admin_users_index_html_haml__3316571450171832778_25513560'
app/views/admin/users/index.html.haml:40:in `_app_views_admin_users_index_html_haml__3316571450171832778_25513560'
what is interesting is that I can access the details of the users I already have created:
Started GET "/admin/users/user1" for 124.35.146.2 at 2013-04-04 12:09:59 +0900
Processing by Admin::UsersController#show as HTML
Parameters: {"id"=>"user1"}
Rendered admin/users/show.html.haml within layouts/admin (80.9ms)
Rendered layouts/_head.html.haml (0.8ms)
Rendered layouts/_flash.html.haml (0.1ms)
Rendered layouts/_search.html.haml (45.3ms)
Rendered layouts/_init_auto_complete.html.haml (4.2ms)
Rendered layouts/_head_panel.html.haml (53.7ms)
Completed 200 OK in 150ms (Views: 107.2ms | ActiveRecord: 36.0ms)
Has anyone seen this and is there a workaround?? I need to add some new users to the system and I cannot.