My ability model looks something like this:
class Ability
include CanCan::Ability
def initialize(user)
if user.role == "moderator"
can :manage, [Forum, Post]
elsif user.role == "admin"
can :manage, [Enrollment, SiteCare, Forum, Post]
elsif user.role == "superadmin"
can :manage, [Permission, Enrollment, SiteCare, Forum, Post]
end
end
end
In reality some of the roles have a dozen items they manage. To simplify things how can i construct some ruby that would keep me from having to duplicate so much text? Perhaps something like this construct?
class Ability
include CanCan::Ability
def initialize(user)
a = "Forum, Post"
b = "Enrollment, SiteCare"
c = "Permission"
if user.role == "moderator"
can :manage, [{a}]
elsif user.role == "admin"
can :manage, [{a + b}]
elsif user.role == "superadmin"
can :manage, [{a + b + c}]
end
end
end
Thanks.
P.S. I am aware of the multiple role per user methods (bitmask and Separate Role Model) and prefer not setting up the additional models or database tables.