Re: [Radiant] Re: Using Devise as an authentication solution for end users with Radiant - updated

2010-11-08 Thread Enrico Teotti
Hi, thanks a lot for your post. Did you have to run: ruby script/generate devise_views or did you manage to add the views to the load path? Without those views inside the extension I am getting a "Template is missing" when I submit the forgot password for example. Ta, enrico

[Radiant] Re: Using Devise as an authentication solution for end users with Radiant - updated

2010-10-26 Thread Hugo Villero
Hi, Thanks for the response, yes, I already segregate the Devise controllers, I made a copy of devise gem at : /trunk/vendor/gems/devise-1.0.8, and I already change those 5 controllers to something like: class ConfirmationsController < DeviseController on each one And I think is using that dev

Re: [Radiant] Re: Using Devise as an authentication solution for end users with Radiant - updated

2010-10-26 Thread Wesley Gamble
Did you segregate the Devise controllers away from the ApplicationController? What you're seeing is the collision between the Devise authenticate method and the LoginSystem (Radiant) authentication method. You need to "vendor" Devise and change it's controllers to descend from ActinController:B

[Radiant] Re: Using Devise as an authentication solution for end users with Radiant - updated

2010-10-26 Thread Hugo Villero
Thank you very much for that post, I've been looking for that solution to long time, I already did all those changes and now /custom_users/sign_up is working, I'm able to register, but the /custom_users/sign_in doesn't work, I'm getting this error: -- Processing SessionsController#cre