mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-17 14:47:53 +01:00
8 lines
244 B
JavaScript
8 lines
244 B
JavaScript
module.exports = function(user, req, cb) {
|
|
user.inbox.messages = {};
|
|
if (typeof user.markModified === "function") {
|
|
user.markModified('inbox.messages');
|
|
}
|
|
return typeof cb === "function" ? cb(null, user.inbox.messages) : void 0;
|
|
};
|