2012-01-13 10:20:04 +00:00
|
|
|
class AppManager
|
|
|
|
include Mongoid::Document
|
|
|
|
include Mongoid::Timestamps
|
2012-06-25 08:23:16 +00:00
|
|
|
|
2012-10-16 06:23:44 +00:00
|
|
|
belongs_to :user,index: true
|
2012-01-13 10:20:04 +00:00
|
|
|
|
2012-10-16 06:23:44 +00:00
|
|
|
belongs_to :managing_app, :polymorphic => true,index: true #,:class_name => 'ModuleApp',:inverse_of => :managers,:foreign_key => "user_id"
|
2012-01-13 10:20:04 +00:00
|
|
|
belongs_to :sub_managing_app, :polymorphic => true #,:class_name => 'ModuleApp',:inverse_of => :sub_manager,:foreign_key => "sub_user_id"
|
|
|
|
|
|
|
|
belongs_to :rule_creator,:class_name => 'User'
|
2012-10-16 06:23:44 +00:00
|
|
|
|
2012-01-13 10:20:04 +00:00
|
|
|
end
|