1exports.destroyLink = function(req, res) {
2Node.findByIdAndUpdate(
3 req.params.id, { $pull: { "configuration.links": { _id: req.params.linkId } } }, { safe: true, upsert: true },
4 function(err, node) {
5 if (err) { return handleError(res, err); }
6 return res.status(200).json(node.configuration.links);
7 });
8};