mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-17 22:57:21 +01:00
8 lines
278 B
JavaScript
8 lines
278 B
JavaScript
module.exports = function(user, req, cb) {
|
|
delete user.inbox.messages[req.params.id];
|
|
if (typeof user.markModified === "function") {
|
|
user.markModified('inbox.messages.' + req.params.id);
|
|
}
|
|
return typeof cb === "function" ? cb(null, user.inbox.messages) : void 0;
|
|
};
|