Skip to content

Commit

Permalink
refactor(merge-board): remove link of board when a sub-board is merged (
Browse files Browse the repository at this point in the history
  • Loading branch information
nunocaseiro authored Nov 25, 2022
1 parent d54dbdd commit 4c4d68a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export class SlackMergeBoardApplication implements MergeBoardApplicationInterfac

async execute(data: MergeBoardType): Promise<MergeBoardType | null> {
const { responsiblesChannelId, teamNumber, isLastSubBoard } = data;
const message = `<!channel>, The board of team ${teamNumber} is ready. Link: ${this.frontendUrl}/boards/${data.boardId}`;
const message = `<!channel>, The board of team ${teamNumber} is ready`;
this.chatHandler.postMessage(responsiblesChannelId, message);

if (isLastSubBoard) {
Expand Down

0 comments on commit 4c4d68a

Please sign in to comment.