I currently have something like this in ability.rb:

if user.role? == "staff"
    can :update, Interp do |item|
        item.try(:user) == user
    end
    can :update, Invitation do |item|
        item.try(:user) == user
    end
end

Actually, there are a bunch of statements like this for "update" for each role. Would this next version work just as well?

if user.role? == "staff"
    can :update, [Interp, Invitation] do |item|
        item.try(:user) == user
    end
end

Is there a shorter way?

UPDATE: This method definitely works and is the least amount of code to do this.

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

That should work. If it doesn't, you can always do it like this:

if user.role? == "staff"
    [Interp, Invitation].each do |resource|
        can :update, resource do |item|
            item.try(:user) == user
        end
    end
end

However, I think cancan is smart enough to understand what you're trying to do in this case. Never tried it, though.

link|improve this answer
thanks! +1, will come back after i try to impliment. Hey, you care to take a shot at this question? stackoverflow.com/questions/7034073/… – Jay Aug 12 '11 at 0:10
feedback

Your Answer

 
or
required, but never shown

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