2010-06-08 00:45:49 +00:00
|
|
|
class Project
|
|
|
|
|
|
|
|
include Mongoid::Document
|
|
|
|
include CustomFields::ProxyClassEnabler
|
|
|
|
include CustomFields::CustomFieldsFor
|
|
|
|
|
|
|
|
field :name
|
|
|
|
field :description
|
|
|
|
|
|
|
|
has_many_related :people
|
|
|
|
embeds_many :tasks
|
|
|
|
|
|
|
|
custom_fields_for :people
|
|
|
|
custom_fields_for :tasks
|
|
|
|
|
2010-06-16 14:43:29 +00:00
|
|
|
named_scope :ordered, :order_by => [[:name, :asc]]
|
|
|
|
|
2010-06-08 00:45:49 +00:00
|
|
|
end
|