mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-16 22:27:26 +01:00
8 lines
223 B
JavaScript
8 lines
223 B
JavaScript
import _ from 'lodash';
|
|
|
|
module.exports = function deletePM (user, req = {}) {
|
|
delete user.inbox.messages[_.get(req, 'params.id')];
|
|
user.markModified(`inbox.messages.${req.params.id}`);
|
|
return user.inbox.messages;
|
|
};
|