mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 15:30:13 +01:00
9 lines
336 B
JavaScript
9 lines
336 B
JavaScript
Meteor.startup(() => {
|
|
// XXX: add activity id to profile.notifications,
|
|
// it can be displayed and rendered on web or mobile UI
|
|
// will uncomment the following code once UI implemented
|
|
//
|
|
// Notifications.subscribe('profile', (user, title, description, params) => {
|
|
// user.addNotification(params.activityId);
|
|
// });
|
|
});
|