I know its probably doesnt sound right, but I am trying to call a
before_filter method that will check whats the user role and then
based on that return a string / hash / array to the before_filter

something like this:

class MonqiClassesController < ResourceController::Base
  before_filter :check_user_access_level , grant_access

  def check_user_access_level

    if current_user.has_role?('staff')
     return grant_access = {:only  => :index}
    end
  end
end

i am planing on using case and then return the set of actions they can
preform

maybe there's a better way or someone already saw that somewhere

thanks
Ami

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to