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.
2010-01-04 07:52:30 +00:00
|
|
|
class Announcement
|
2009-06-01 02:54:16 +00:00
|
|
|
|
2010-01-04 07:52:30 +00:00
|
|
|
include MongoMapper::Document
|
|
|
|
|
|
|
|
key :title_en, String
|
|
|
|
key :content_en, String
|
|
|
|
key :content_zh_tw, 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
|