mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-04-15 04:06:22 +00:00
10 lines
183 B
JavaScript
10 lines
183 B
JavaScript
import i18n from '../i18n';
|
|
|
|
module.exports = function markPmsRead (user) {
|
|
user.inbox.newMessages = 0;
|
|
|
|
return [
|
|
user.inbox.newMessages,
|
|
i18n.t('pmsMarkedRead'),
|
|
];
|
|
};
|