Greg
Greg

Reputation: 243

devise registration error

I just set up devise and receive the following error after I sign up or sign in.

undefined local variable or method `root_path' for
#<Devise::SessionsController:0x007fc514ea6920>

I do have the following in my routes.rb file

root :to => "store#index", :as => "store"

Any suggestions?

Upvotes: 0

Views: 620

Answers (1)

Zabba
Zabba

Reputation: 65517

Stop webrick, remove the , :as => "store" from the root route, restart webrick.

Upvotes: 2

Related Questions