calendar/app/models/calendar_type.rb

10 lines
212 B
Ruby
Raw Normal View History

2014-12-16 11:40:15 +00:00
class CalendarType
include Mongoid::Document
include Mongoid::Timestamps
include OrbitCategory::Categorizable
field :title, localize: true
field :color
has_many :events, :dependent => :destroy
end