orbit-basic/vendor/built_in_modules/announcement/app/models/bulletin_file.rb

18 lines
299 B
Ruby
Raw Normal View History

2012-01-11 12:31:52 +00:00
class BulletinFile
include Mongoid::Document
include Mongoid::Timestamps
mount_uploader :file, AssetUploader
field :filetitle
field :description
# field :to_save, :type => Boolean
field :should_destroy, :type => Boolean
2012-01-12 10:38:50 +00:00
# belongs_to :bulletin
embedded_in :bulletin
2012-01-11 12:31:52 +00:00
end