Managing User Accounts with Rails 3 and Devise

Viewed 7721

I have implemented Devise in a Rails 3 application and I need admin users to be able to manage users. Users are not registerable and therefore an admin must create accounts. What would be the best way to go about this?

It doesn't seem very DRY to create my own UsersController when Devise already provides Devise::RegistrationController but I don't see any other options.

2 Answers
Related