Code cleanup in lib/dao.js
Rename callback argument "result" to "info" to make it consistent with other places where we use "info" too. Remove traling whitespace.
This commit is contained in:
parent
1461400f72
commit
3a51510119
12
lib/dao.js
12
lib/dao.js
|
@ -370,7 +370,7 @@ DataAccessObject.updateOrCreate = DataAccessObject.upsert = function upsert(data
|
|||
}
|
||||
|
||||
var context = {
|
||||
Model: Model,
|
||||
Model: Model,
|
||||
query: byIdQuery(Model, id),
|
||||
hookState: hookState,
|
||||
options: options
|
||||
|
@ -410,7 +410,7 @@ DataAccessObject.updateOrCreate = DataAccessObject.upsert = function upsert(data
|
|||
self.getDataSource().connector
|
||||
.updateOrCreate(Model.modelName, update, done);
|
||||
|
||||
function done(err, data, result) {
|
||||
function done(err, data, info) {
|
||||
var obj;
|
||||
if (data && !(data instanceof Model)) {
|
||||
inst._initProperties(data, { persisted: true });
|
||||
|
@ -427,7 +427,7 @@ DataAccessObject.updateOrCreate = DataAccessObject.upsert = function upsert(data
|
|||
var context = {
|
||||
Model: Model,
|
||||
instance: obj,
|
||||
isNewInstance: result ? result.isNewInstance : undefined,
|
||||
isNewInstance: info ? info.isNewInstance : undefined,
|
||||
hookState: hookState,
|
||||
options: options
|
||||
};
|
||||
|
@ -1356,11 +1356,11 @@ DataAccessObject.remove = DataAccessObject.deleteAll = DataAccessObject.destroyA
|
|||
cb = cb || utils.createPromiseCallback();
|
||||
where = where || {};
|
||||
options = options || {};
|
||||
|
||||
|
||||
assert(typeof where === 'object', 'The where argument must be an object');
|
||||
assert(typeof options === 'object', 'The options argument must be an object');
|
||||
assert(typeof cb === 'function', 'The cb argument must be a function');
|
||||
|
||||
|
||||
var hookState = {};
|
||||
|
||||
var query = { where: where };
|
||||
|
@ -1593,7 +1593,7 @@ DataAccessObject.prototype.save = function (options, cb) {
|
|||
|
||||
assert(typeof options === 'object', 'The options argument should be an object');
|
||||
assert(typeof cb === 'function', 'The cb argument should be a function');
|
||||
|
||||
|
||||
var hookState = {};
|
||||
|
||||
if (options.validate === undefined) {
|
||||
|
|
Loading…
Reference in New Issue