aboutsummaryrefslogtreecommitdiff
path: root/app/models/agent.rb
blob: 6264ba3f1231d18df6ea50879386534b255119c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
class Agent < ApplicationRecord
  has_many :agencies
  has_many :members, through: :agencies, source: :user
  has_many :resources
  has_many :taxonomies
  has_many :categories, through: :taxonomies
  has_many :sections, through: :categories

  def to_param
    uuid
  end

  def to_s
    name
  end
end