I have devise set-up, and it works great when a new user is going through the registration process themselves but before implementing Devise, admin had the ability to create users and behavior related to that was in my old users controller. Now that I am using devise when I visit my old forms, new action triggers fine but when I actually submit the form, no matter what I do it goes to the Devise's registration controller create action. I know that I can override the controller and copy the code that I had in my old users controller there but I was wondering if there was a way to prevent this behavior on certain calls?I have devise set-up, and it works great when a