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

16 lines
306 B
Ruby

class BulletinLink
include Mongoid::Document
include Mongoid::Timestamps
field :url
# field :name
has_one :i18n_variable, :as => :language_value, :autosave => true, :dependent => :destroy
field :should_destroy, :type => Boolean
# embedded_in :bulletin
belongs_to :bulletin
end