15 lines
282 B
Ruby
15 lines
282 B
Ruby
|
class AlbumImage
|
||
|
include Mongoid::Document
|
||
|
include Mongoid::Timestamps
|
||
|
include OrbitTag::Taggable
|
||
|
|
||
|
mount_uploader :file, GalleryUploader
|
||
|
|
||
|
field :title
|
||
|
field :description, localize: true
|
||
|
|
||
|
# has_and_belongs_to_many :tags, :class_name => "GalleryTag"
|
||
|
|
||
|
belongs_to :album
|
||
|
|
||
|
end
|