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
|
2016-05-09 10:11:18 +00:00
|
|
|
field :choose_lang, :type => Array, :default => ["en","zh_tw"]
|
2014-05-01 08:41:00 +00:00
|
|
|
|
|
|
|
belongs_to :bulletin
|
|
|
|
|
2016-05-09 10:11:18 +00:00
|
|
|
|
|
|
|
def enabled_for?(lang)
|
|
|
|
if lang.nil?
|
|
|
|
return true
|
|
|
|
else
|
|
|
|
return self.choose_lang.include?(lang)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-05-01 08:41:00 +00:00
|
|
|
end
|