event_ann/app/models/bulletin_feed_event.rb

9 lines
205 B
Ruby
Raw Normal View History

2020-07-13 08:04:57 +00:00
class BulletinFeedEvent
include Mongoid::Document
include Mongoid::Timestamps
include Slug
field :title, as: :slug_title, type: String, localize: true
field :tag_ids, type: Array, default: []
end