Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion platforms/evoting-api/src/services/MessageService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export class MessageService {

const voteUrl = `${process.env.PUBLIC_EVOTING_URL || 'http://localhost:3000'}/${voteId}`;
return await this.createSystemMessage({
text: `eVoting Platform: New vote created!\n\n"${voteTitle}"\n\nVote ID: ${voteId}\n\nCreated by: ${creatorName}${deadlineText}\n\n<a href="${voteUrl}">Cast your vote here</a>`,
text: `eVoting Platform: New vote created!\n\n"${voteTitle}"\n\nVote ID: ${voteId}\n\nCreated by: ${creatorName}${deadlineText}\n\n<a href="${voteUrl}" target="_blank">Cast your vote here</a>`,
groupId,
voteId,
});
Expand Down
Loading