Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have started using devise for my rails app, however i need to make some changes to the controller logic that devise has, my problem is that i assign users roles, and i want to put in params[:user][:role_ids] ||= [] in the update action so if all the roles are unchecked then it actually works.

whats the best way to do this?

share|improve this question

1 Answer

up vote 9 down vote accepted
class UsersController < Devise::SessionsController
  def create
    super
  end
 def update
   #edit here
 end
end

and make sure you update your routes.rb file:

devise_for :users, :controllers => { :sessions => 'users/sessions' } 
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.