我的关联如下:
User has_many :employees
Employee belongs_to :user
Ticket has_many :employees
我的路线是正常的,没有为那些模型嵌套,我该如何为分配的员工编写能力?
注意用户ID与员工ID不同
能力.rb
if user.has_role? :ticket_manager
can :manage, Ticket, :employee_id => #how to match the employee.id
end