mirror of
https://github.com/wahyd4/ocelots.git
synced 2026-08-09 04:56:21 +10:00
6 lines
146 B
Ruby
6 lines
146 B
Ruby
class Organisation < ActiveRecord::Base
|
|
attr_accessible :name, :domains
|
|
has_many :engagements
|
|
has_many :teams, :through => :engagements
|
|
end
|