I've got a fledgling form to can create/edit users. When I try to create a new user, it reroutes back to my main project index page, and the user is not created.
I put a log on my UserController.create method, and it appears that it's not being called. Is Devise somehow redirecting my create action?
This is the error in the log:
Started POST "/users" for 127.0.0.1 at 2012-07-19 10:29:26 -0500
Processing by Devise::RegistrationsController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"blah", "user"=>{snip}, "commit"=>"Create User"}
User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 LIMIT 1
Filter chain halted as :require_no_authentication rendered or redirected
Completed 302 Found in 68ms (ActiveRecord: 1.0ms)
I know I'm doing something wrong, but I'm not sure what.