mirror of
https://github.com/wekan/wekan.git
synced 2025-12-30 22:28:49 +01:00
add translation (en/de) for email notifications regarding checklists and checklist items
This commit is contained in:
parent
f98d640e1e
commit
0bbfa632f7
3 changed files with 9 additions and 1 deletions
|
|
@ -119,6 +119,10 @@ if (Meteor.isServer) {
|
|||
const checklist = activity.checklist();
|
||||
params.checklist = checklist.title;
|
||||
}
|
||||
if (activity.checklistItemId) {
|
||||
const checklistItem = activity.checklistItem();
|
||||
params.checklistItem = checklistItem.title;
|
||||
}
|
||||
if (board) {
|
||||
const watchingUsers = _.pluck(_.where(board.watchers, {level: 'watching'}), 'userId');
|
||||
const trackingUsers = _.pluck(_.where(board.watchers, {level: 'tracking'}), 'userId');
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue