mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 23:40:13 +01:00
5 lines
155 B
JavaScript
5 lines
155 B
JavaScript
Meteor.startup(() => {
|
|
Notifications.subscribe('profile', (user, title, description, params) => {
|
|
user.addNotification(params.activityId);
|
|
});
|
|
});
|