orbit-basic/app/models/announcement.rb

11 lines
236 B
Ruby
Raw Normal View History

require 'couch_foo'
2009-06-01 02:54:16 +00:00
class Announcement < CouchFoo::Base
2009-07-06 08:23:34 +00:00
property_i18n :title, String
property_i18n :content, String
2009-06-01 02:54:16 +00:00
def to_liquid
{ "id" => self.id, "title" => self.title, "content" => self.content }
2009-06-01 02:54:16 +00:00
end
end