diaspora/app/models/ostatus_post.rb
2010-07-22 21:27:43 -07:00

17 lines
268 B
Ruby

class OstatusPost
include MongoMapper::Document
key :author_id, ObjectId
key :message, String
key :permalink, String
key :published_at, DateTime
belongs_to :author, :class_name => 'Author'
cattr_reader :per_page
@@per_page = 10
timestamps!
end