mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-05-25 23:25:41 +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'),
|
|
];
|
|
};
|