habitica/common/script/ops/deleteWebhook.js

8 lines
280 B
JavaScript
Raw Normal View History

2016-03-07 22:02:42 +00:00
module.exports = function (user, req, cb) {
delete user.preferences.webhooks[req.params.id];
if (typeof user.markModified === 'function') {
user.markModified('preferences.webhooks');
}
return typeof cb === 'function' ? cb(null, user.preferences.webhooks) : void 0;
};