diaspora/app/models/blog.rb
2010-06-24 17:22:49 -07:00

12 lines
157 B
Ruby

class Blog < Post
xml_accessor :title
xml_accessor :body
key :title, String
key :body, String
validates_presence_of :title, :body
end