mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-05-24 14:45:36 +00:00
8 lines
280 B
JavaScript
8 lines
280 B
JavaScript
|
|
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;
|
||
|
|
};
|