blob: 9b199acfb5bce15bffe3500b470975b8f27120d2 (
plain)
1
2
3
4
5
6
7
8
|
# SPDX-FileCopyrightText: 2020 IN COMMON Collective <collective@incommon.cc>
#
# SPDX-License-Identifier: AGPL-3.0-or-later
class User < ApplicationRecord
has_many :agencies
has_many :agents, through: :agencies, source: :agent
end
|