devise forgot password function not working when creating own user controller?
- by ragupathi
I use devise for authentication and i have created a user controller and specified as shown below in my routes which lets me to create users,edit and delete users,
devise_for :users do
resources :users, :only => [:index, :new, :create, :edit, :update, :destroy]
end
but i cannot able to make the forgot password functionality work using this but in case i specify as
devise_for :users
then i can able to use the forgot password function that comes with devise and i could not able to create , edit or delete when i specify like this. So how can i make both to work ?
please help me