mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-17 22:57:21 +01:00
15 lines
258 B
JavaScript
15 lines
258 B
JavaScript
import i18n from '../i18n';
|
|
|
|
module.exports = function markPmsRead (user, req = {}) {
|
|
user.inbox.newMessages = 0;
|
|
|
|
if (req.v2 === true) {
|
|
return user;
|
|
} else {
|
|
return [
|
|
user.inbox.newMessages,
|
|
i18n.t('pmsMarkedRead'),
|
|
];
|
|
}
|
|
};
|