mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-17 14:47:53 +01:00
10 lines
316 B
JavaScript
10 lines
316 B
JavaScript
import _ from 'lodash';
|
|
|
|
module.exports = function(user, req, cb) {
|
|
_.merge(user.preferences.webhooks[req.params.id], req.body);
|
|
if (typeof user.markModified === "function") {
|
|
user.markModified('preferences.webhooks');
|
|
}
|
|
return typeof cb === "function" ? cb(null, user.preferences.webhooks) : void 0;
|
|
};
|