mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-08-04 09:39:23 +00:00
9 lines
234 B
JavaScript
9 lines
234 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,
|
|
];
|
|
};
|