16 lines
292 B
Ruby
16 lines
292 B
Ruby
|
class Section
|
||
|
include Mongoid::Document
|
||
|
include Mongoid::Timestamps
|
||
|
|
||
|
field :name, default: "Section"
|
||
|
|
||
|
belongs_to :desktop
|
||
|
has_many :groups, :autosave => true, :dependent => :destroy
|
||
|
|
||
|
before_create :initialize_group
|
||
|
|
||
|
def initialize_group
|
||
|
self.build_group
|
||
|
end
|
||
|
|
||
|
end
|