mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-17 14:47:53 +01:00
6 lines
139 B
JavaScript
6 lines
139 B
JavaScript
|
|
module.exports = function(user, req) {
|
|
delete user.preferences.webhooks[req.params.id];
|
|
user.markModified('preferences.webhooks');
|
|
};
|