module-and-template-store/app/models/template.rb

15 lines
339 B
Ruby
Raw Normal View History

2013-12-25 10:39:05 +00:00
class Template
include Mongoid::Document
include Mongoid::Timestamps
include Mongoid::Slug
2013-12-25 10:39:05 +00:00
field :title, type: String
field :author, type: String
field :preview, type: String
field :template, type: String
slug :title, history: true
2013-12-25 10:39:05 +00:00
mount_uploader :preview, ImageUploader
mount_uploader :template, ProductUploader
end