I am using Devise and when I check the form for registration of the new user, in the method is set up just this: /users
.
When I check in logs where the app goes after hitting submit button in the registration form, it's here:
Started POST "/users" for 127.0.0.1 at 2013-08-21 18:13:11 +0200
Processing by Devise::RegistrationsController#create as HTML
But when I go to the Registration Controller
and there to the action create
and comment all code in there, there is no error, everything is processed correctly, which makes me confused.
Where is the code for creating a new user for Devise gem?