aboutsummaryrefslogtreecommitdiff
path: root/app/models/agent.rb
blob: 07e0b8eaeae358bb3c86c66fafb723da40d48c23 (plain)
1
2
3
4
5
class Agent < ApplicationRecord
  has_many :agencies
  has_many :members, through: :agencies, source: :user
  has_many :resources
end