habitica/common/script/ops/deleteWebhook.js

8 lines
279 B
JavaScript
Raw Normal View History

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