oh ok, well, yes maybe that's it! Maybe it was kinda obvious and I didn't see it! There is two different ways to create a new user.
SIGN UP A Sign Up form, where people can subscribe to the Web App. When they subscribe, it creates an account for them and a user is created via the Sign Up form (a modified version of Devise Sign Up form) ACCOUNT OWNER ADDING USERS A Create New User form from INSIDE the Web App, where the Account Owner can add users for the Web App. The one in which I'm currently working on, it's on the form from INSIDE the Web App so Account Owners can add people to the account. So I guess whenever a new user is attempted to be created, Devise sends them to the, duh, Registration Controller. But I need a form that it's supposed to be handled by the User Controller. How do you recommend I tackle that problem? Should do something to use the Registration Controller or should I use the User Controller? Still the question remains, why does the Create New User form from the Users Controller sends me to the Sign In page, realizes I'm already signed in, then redirects me to the root url with message "You are already logged in"? -- Posted via http://www.ruby-forum.com/. -- 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.

