Cleanup
This commit is contained in:
4
node_modules/mongoose/lib/plugins/removeSubdocs.js
generated
vendored
4
node_modules/mongoose/lib/plugins/removeSubdocs.js
generated
vendored
@@ -15,13 +15,13 @@ module.exports = function(schema) {
|
||||
}
|
||||
|
||||
const _this = this;
|
||||
const subdocs = this.$__getAllSubdocs();
|
||||
const subdocs = this.$getAllSubdocs();
|
||||
|
||||
each(subdocs, function(subdoc, cb) {
|
||||
subdoc.$__remove(cb);
|
||||
}, function(error) {
|
||||
if (error) {
|
||||
return _this.schema.s.hooks.execPost('remove:error', _this, [_this], { error: error }, function(error) {
|
||||
return _this.$__schema.s.hooks.execPost('remove:error', _this, [_this], { error: error }, function(error) {
|
||||
next(error);
|
||||
});
|
||||
}
|
||||
|
||||
12
node_modules/mongoose/lib/plugins/saveSubdocs.js
generated
vendored
12
node_modules/mongoose/lib/plugins/saveSubdocs.js
generated
vendored
@@ -15,7 +15,7 @@ module.exports = function(schema) {
|
||||
}
|
||||
|
||||
const _this = this;
|
||||
const subdocs = this.$__getAllSubdocs();
|
||||
const subdocs = this.$getAllSubdocs();
|
||||
|
||||
if (!subdocs.length) {
|
||||
next();
|
||||
@@ -23,12 +23,12 @@ module.exports = function(schema) {
|
||||
}
|
||||
|
||||
each(subdocs, function(subdoc, cb) {
|
||||
subdoc.schema.s.hooks.execPre('save', subdoc, function(err) {
|
||||
subdoc.$__schema.s.hooks.execPre('save', subdoc, function(err) {
|
||||
cb(err);
|
||||
});
|
||||
}, function(error) {
|
||||
if (error) {
|
||||
return _this.schema.s.hooks.execPost('save:error', _this, [_this], { error: error }, function(error) {
|
||||
return _this.$__schema.s.hooks.execPost('save:error', _this, [_this], { error: error }, function(error) {
|
||||
next(error);
|
||||
});
|
||||
}
|
||||
@@ -43,7 +43,7 @@ module.exports = function(schema) {
|
||||
}
|
||||
|
||||
const _this = this;
|
||||
const subdocs = this.$__getAllSubdocs();
|
||||
const subdocs = this.$getAllSubdocs();
|
||||
|
||||
if (!subdocs.length) {
|
||||
next();
|
||||
@@ -51,12 +51,12 @@ module.exports = function(schema) {
|
||||
}
|
||||
|
||||
each(subdocs, function(subdoc, cb) {
|
||||
subdoc.schema.s.hooks.execPost('save', subdoc, [subdoc], function(err) {
|
||||
subdoc.$__schema.s.hooks.execPost('save', subdoc, [subdoc], function(err) {
|
||||
cb(err);
|
||||
});
|
||||
}, function(error) {
|
||||
if (error) {
|
||||
return _this.schema.s.hooks.execPost('save:error', _this, [_this], { error: error }, function(error) {
|
||||
return _this.$__schema.s.hooks.execPost('save:error', _this, [_this], { error: error }, function(error) {
|
||||
next(error);
|
||||
});
|
||||
}
|
||||
|
||||
2
node_modules/mongoose/lib/plugins/sharding.js
generated
vendored
2
node_modules/mongoose/lib/plugins/sharding.js
generated
vendored
@@ -56,7 +56,7 @@ module.exports.storeShard = storeShard;
|
||||
|
||||
function storeShard() {
|
||||
// backwards compat
|
||||
const key = this.schema.options.shardKey || this.schema.options.shardkey;
|
||||
const key = this.$__schema.options.shardKey || this.$__schema.options.shardkey;
|
||||
if (!utils.isPOJO(key)) {
|
||||
return;
|
||||
}
|
||||
|
||||
4
node_modules/mongoose/lib/plugins/validateBeforeSave.js
generated
vendored
4
node_modules/mongoose/lib/plugins/validateBeforeSave.js
generated
vendored
@@ -21,7 +21,7 @@ module.exports = function(schema) {
|
||||
if (hasValidateBeforeSaveOption) {
|
||||
shouldValidate = !!options.validateBeforeSave;
|
||||
} else {
|
||||
shouldValidate = this.schema.options.validateBeforeSave;
|
||||
shouldValidate = this.$__schema.options.validateBeforeSave;
|
||||
}
|
||||
|
||||
// Validate
|
||||
@@ -33,7 +33,7 @@ module.exports = function(schema) {
|
||||
{ validateModifiedOnly: options.validateModifiedOnly } :
|
||||
null;
|
||||
this.validate(validateOptions, function(error) {
|
||||
return _this.schema.s.hooks.execPost('save:error', _this, [_this], { error: error }, function(error) {
|
||||
return _this.$__schema.s.hooks.execPost('save:error', _this, [_this], { error: error }, function(error) {
|
||||
_this.$op = 'save';
|
||||
next(error);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user