Figured it out. The correct code for each resource action is: <%= link_to "Index", admin_users_path %> <%= link_to "Show", admin_user_path(user) %> <%= link_to "Edit", edit_admin_user_path(user) %> <%= link_to "Delete", admin_user_path(user), :confirm => "Are you sure?", :method => :delete %>
The users/user thing was throwing me off. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---

