Files
ocelots/app/models/organisation.rb
2012-11-13 15:24:19 +08:00

6 lines
146 B
Ruby

class Organisation < ActiveRecord::Base
attr_accessible :name, :domains
has_many :engagements
has_many :teams, :through => :engagements
end