2012-09-14 13:59:20 +00:00
|
|
|
class Cal
|
|
|
|
include Mongoid::Document
|
|
|
|
include Mongoid::Timestamps
|
|
|
|
|
2013-04-26 03:18:57 +00:00
|
|
|
include OrbitTag::Taggable
|
|
|
|
taggable
|
|
|
|
|
2012-09-14 13:59:20 +00:00
|
|
|
field :name, localize: true
|
|
|
|
field :color
|
|
|
|
has_many :events, :autosave => true, :dependent => :destroy
|
|
|
|
accepts_nested_attributes_for :events, :allow_destroy => true
|
|
|
|
end
|