mirror of
https://github.com/wekan/wekan.git
synced 2026-01-05 17:18:49 +01:00
add full name if exists in email-invite-subject or when tagging someone with '@' while commenting a card
This commit is contained in:
parent
b12312f998
commit
d9329a9e15
6 changed files with 23 additions and 7 deletions
|
|
@ -1237,9 +1237,10 @@ if (Meteor.isServer) {
|
|||
}
|
||||
|
||||
try {
|
||||
const fullName = inviter.profile !== undefined ? inviter.profile.fullname : "";
|
||||
const params = {
|
||||
user: user.username,
|
||||
inviter: inviter.username,
|
||||
inviter: fullName != "" ? fullName + " (" + inviter.username + " )" : inviter.username,
|
||||
board: board.title,
|
||||
url: board.absoluteUrl(),
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue