summaryrefslogtreecommitdiffstats
path: root/models/checklists.js
diff options
context:
space:
mode:
authorJustin Reynolds <justinr1234@gmail.com>2019-06-28 12:52:09 -0500
committerJustin Reynolds <justinr1234@gmail.com>2019-06-28 12:56:51 -0500
commit3eb4d2c341b712268bd321173909e0a7b19a88c9 (patch)
tree25a8fcb088f3984e72a5bd3ded9e6a45376e0693 /models/checklists.js
parenta0a482aa8efb3255a523de4524c8e09453d5571f (diff)
downloadwekan-3eb4d2c341b712268bd321173909e0a7b19a88c9.tar.gz
wekan-3eb4d2c341b712268bd321173909e0a7b19a88c9.tar.bz2
wekan-3eb4d2c341b712268bd321173909e0a7b19a88c9.zip
Prettier & eslint project style update
Diffstat (limited to 'models/checklists.js')
-rw-r--r--models/checklists.js23
1 files changed, 9 insertions, 14 deletions
diff --git a/models/checklists.js b/models/checklists.js
index 6fd22702..f139192e 100644
--- a/models/checklists.js
+++ b/models/checklists.js
@@ -59,7 +59,7 @@ Checklists.attachSchema(
type: Number,
decimal: true,
},
- })
+ }),
);
Checklists.helpers({
@@ -68,7 +68,7 @@ Checklists.helpers({
this._id = null;
this.cardId = newCardId;
const newChecklistId = Checklists.insert(this);
- ChecklistItems.find({ checklistId: oldChecklistId }).forEach((item) => {
+ ChecklistItems.find({ checklistId: oldChecklistId }).forEach(item => {
item._id = null;
item.checklistId = newChecklistId;
item.cardId = newCardId;
@@ -84,7 +84,7 @@ Checklists.helpers({
{
checklistId: this._id,
},
- { sort: ['sort'] }
+ { sort: ['sort'] },
);
},
finishedCount() {
@@ -160,16 +160,11 @@ if (Meteor.isServer) {
});
});
- Checklists.before.update((userId, doc, fieldNames, modifier, options) => {
- modifier.$set = modifier.$set || {};
- modifier.$set.modifiedAt = Date.now();
- });
-
Checklists.before.remove((userId, doc) => {
const activities = Activities.find({ checklistId: doc._id });
const card = Cards.findOne(doc.cardId);
if (activities) {
- activities.forEach((activity) => {
+ activities.forEach(activity => {
Activities.remove(activity._id);
});
}
@@ -203,7 +198,7 @@ if (Meteor.isServer) {
Authentication.checkUserId(req.userId);
const paramCardId = req.params.cardId;
const checklists = Checklists.find({ cardId: paramCardId }).map(function(
- doc
+ doc,
) {
return {
_id: doc._id,
@@ -220,7 +215,7 @@ if (Meteor.isServer) {
code: 500,
});
}
- }
+ },
);
/**
@@ -269,7 +264,7 @@ if (Meteor.isServer) {
code: 500,
});
}
- }
+ },
);
/**
@@ -313,7 +308,7 @@ if (Meteor.isServer) {
code: 400,
});
}
- }
+ },
);
/**
@@ -340,7 +335,7 @@ if (Meteor.isServer) {
_id: paramChecklistId,
},
});
- }
+ },
);
}