In application_controller I have the following method:

  def authorized_for_roles(*roles)
    roles.each{|role_name| return true if current_user.has_role?(role_name)}
    false
  end

In one of my controllers, I have

private

  def authorize_administration
    authorized_for_roles :administrator
  end

I am calling authorize_administration in my before_filter. Currently getting 'undefined method roles" error. Can someone tell me where I've gone wrong? the current_user is valid/defined, and the role can be checked.

Thanks

link|improve this question

Can you include the 'has_role?' method from the User model? – Rob d'Apice May 17 '11 at 4:33
feedback

1 Answer

up vote 0 down vote accepted

Is the error really in the authorized_for_roles def, or perhaps in the User model? Did you define has_many :roles for User?

link|improve this answer
the user has_one :role, but what I'm after is checking for multiple roles -- for example I might call authorized_for_roles :administrator, :moderator, so I can authorize users with either of those roles for the controller actions. – Chip May 17 '11 at 3:44
OK I just went back & it seems that my user belongs_to :role – Chip May 17 '11 at 3:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.