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.