@dhyasama/totem-models 11.110.0 → 11.111.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/Person.js +0 -10
- package/package.json +1 -1
package/lib/Person.js
CHANGED
|
@@ -101,16 +101,6 @@ module.exports = function(mongoose, config) {
|
|
|
101
101
|
// customer specific (customer id is stored on doc)
|
|
102
102
|
documents: [ { type: Schema.ObjectId, ref: 'Document' } ],
|
|
103
103
|
|
|
104
|
-
// this only relates to access for lps
|
|
105
|
-
syndication: {
|
|
106
|
-
notify: { type: Boolean, default: false }
|
|
107
|
-
},
|
|
108
|
-
|
|
109
|
-
// this only relates to access for lps
|
|
110
|
-
subscriptions: [{ id: { type: Schema.ObjectId, required: false, default: null }}],
|
|
111
|
-
|
|
112
|
-
account: { type: Schema.ObjectId, ref: 'Account', required: false },
|
|
113
|
-
|
|
114
104
|
entered: {
|
|
115
105
|
by: { type: String, default: null, trim: true },
|
|
116
106
|
on: { type: Date, default: Date.now }
|