This repository has been archived on 2024-03-16. You can view files and clone it, but cannot push or open issues or pull requests.
2009-06-01 06:20:15 +00:00
|
|
|
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
|
2009-06-01 06:20:15 +00:00
|
|
|
{ "id" => self.id, "title" => self.title, "content" => self.content }
|
2009-06-01 02:54:16 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|