forked from saurabh/orbit4-5
14 lines
308 B
Ruby
14 lines
308 B
Ruby
|
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
|