2014-06-23 08:36:04 +00:00
|
|
|
# encoding: utf-8
|
2014-05-01 08:41:00 +00:00
|
|
|
class BulletinFile
|
|
|
|
|
|
|
|
include Mongoid::Document
|
|
|
|
include Mongoid::Timestamps
|
|
|
|
|
|
|
|
mount_uploader :file, AssetUploader
|
|
|
|
|
|
|
|
field :description, localize: true
|
|
|
|
field :title, localize: true
|
|
|
|
|
|
|
|
belongs_to :bulletin
|
|
|
|
|
|
|
|
end
|