Andrés Manelli пре 7 година
родитељ
комит
4dbe6feb8c
1 измењених фајлова са 1 додато и 2 уклоњено
  1. 1 2
      models/checklists.js

+ 1 - 2
models/checklists.js

@@ -148,7 +148,7 @@ if (Meteor.isServer) {
         code: 500,
       });
     }
-});
+  });
 
   JsonRoutes.add('POST', '/api/boards/:boardId/cards/:cardId/checklists', function (req, res) {
     Authentication.checkUserId( req.userId);
@@ -160,7 +160,6 @@ if (Meteor.isServer) {
       sort: 0,
     });
     if (id) {
-      const checklist = Checklists.findOne({_id: id});
       req.body.items.forEach(function (item, idx) {
         ChecklistItems.insert({
           cardId: paramCardId,