2013-11-18 12:02:02 +00:00
|
|
|
class Album
|
2013-07-18 08:53:41 +00:00
|
|
|
include Mongoid::Document
|
2013-07-02 08:46:44 +00:00
|
|
|
include Mongoid::Timestamps
|
2012-07-25 08:20:07 +00:00
|
|
|
|
2013-07-11 10:48:51 +00:00
|
|
|
include OrbitCategory::Categorizable
|
2013-04-26 03:18:57 +00:00
|
|
|
include OrbitTag::Taggable
|
|
|
|
|
2013-07-18 08:53:41 +00:00
|
|
|
field :name, localize: true
|
|
|
|
field :description, localize: true
|
|
|
|
field :cover, default: "default"
|
|
|
|
field :cover_path #can refact
|
|
|
|
field :tag_names
|
2012-07-25 08:20:07 +00:00
|
|
|
|
2013-07-02 08:46:44 +00:00
|
|
|
# has_and_belongs_to_many :tags, :class_name => "GalleryTag"
|
2013-11-18 12:02:02 +00:00
|
|
|
has_many :album_images, :autosave => true, :dependent => :destroy
|
|
|
|
accepts_nested_attributes_for :album_images, :allow_destroy => true
|
2013-07-18 08:53:41 +00:00
|
|
|
|
2012-07-25 08:20:07 +00:00
|
|
|
end
|