orbit-basic/app/models/layout.rb

11 lines
233 B
Ruby
Raw Normal View History

2010-01-04 07:52:30 +00:00
class Layout
include MongoMapper::Document
2010-01-11 09:09:50 +00:00
key :name, String, :required => true, :index => true
2010-01-28 09:42:55 +00:00
key :description, String
2010-01-08 07:32:44 +00:00
key_i18n :content, String
2009-05-07 17:54:33 +00:00
2010-01-28 09:42:55 +00:00
validates_format_of :name, :with => /^[a-zA-Z-_]+$/
2009-05-07 17:54:33 +00:00
end