2010-01-04 07:52:30 +00:00
|
|
|
class Snippet
|
2009-05-07 18:13:27 +00:00
|
|
|
|
2010-01-04 07:52:30 +00:00
|
|
|
include MongoMapper::Document
|
|
|
|
|
2010-01-11 09:09:50 +00:00
|
|
|
key :name, String, :required => true, :index => true
|
2010-01-18 07:52:52 +00:00
|
|
|
key :parent_name, String, :required => true, :index => true
|
2010-01-18 08:23:33 +00:00
|
|
|
key :parent_id, String, :required => true, :index => true
|
|
|
|
|
2010-01-08 07:32:44 +00:00
|
|
|
key_i18n :content, String
|
2009-05-07 18:13:27 +00:00
|
|
|
|
2010-01-18 08:23:33 +00:00
|
|
|
before_validation :setup_default_value
|
|
|
|
|
|
|
|
protected
|
|
|
|
|
|
|
|
def setup_default_value
|
|
|
|
self.parent_id = Item.find_by_name( self.parent_name ).id
|
|
|
|
end
|
2010-01-14 10:30:53 +00:00
|
|
|
|
2009-05-07 18:13:27 +00:00
|
|
|
end
|