|
|
|
|
@ -788,14 +788,14 @@ export class CommandService {
|
|
|
|
|
const ownerPart = assignmentUserIds.length === 0
|
|
|
|
|
? `${ICONS.unassigned} sin responsable${groupName ? ` (${groupName})` : ''}`
|
|
|
|
|
: `${assignmentUserIds.length > 1 ? '👥' : '👤'} ${assignedDisplayNames.join(', ')}`;
|
|
|
|
|
const ackParts = [
|
|
|
|
|
`${ICONS.create} ${taskId} _${description || '(sin descripción)'}_`,
|
|
|
|
|
const ackLines = [
|
|
|
|
|
`${ICONS.create} ${codeId(taskId)} _${description || '(sin descripción)'}_`,
|
|
|
|
|
dueFmt ? `${ICONS.date} ${dueFmt}` : null,
|
|
|
|
|
ownerPart
|
|
|
|
|
].filter(Boolean);
|
|
|
|
|
responses.push({
|
|
|
|
|
recipient: createdBy,
|
|
|
|
|
message: ackParts.join(' — '),
|
|
|
|
|
message: ackLines.join('\n'),
|
|
|
|
|
mentions: mentionsForSending.length > 0 ? mentionsForSending : undefined
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|