orbit4-5/app/models/group_post.rb

14 lines
308 B
Ruby
Raw Normal View History

2015-03-25 07:46:11 +00:00
class GroupPost
include Mongoid::Document
include Mongoid::Timestamps
include Slug
field :title, as: :slug_title, type: String
field :content
field :read_by, type: Array, default: []
field :author, type: BSON::ObjectId
mount_uploader :image, ImageUploader
belongs_to :group
end