私の関連付けは次のとおりです。
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