Добавил Icons.PROJECT

This commit is contained in:
Struchkov Mark 2023-01-17 11:26:12 +03:00
parent ea65a98778
commit aee809304a
Signed by: upagge
GPG Key ID: D3018BE7BA428CA6
3 changed files with 3 additions and 2 deletions

View File

@ -21,6 +21,7 @@ public class Icons {
public static final String BUILD = "\uD83D\uDEE0";
public static final String LINK = "\uD83D\uDD17";
public static final String REVIEWER = "\uD83D\uDD0E";
public static final String PROJECT = "Project";
private Icons() {
utilityClass();

View File

@ -39,7 +39,7 @@ public class NewMrForAssigneeNotifyGenerator implements NotifyBoxAnswerGenerator
builder.append(Icons.HR);
if (checkNotNull(notify.getProjectName())) {
builder.append("Project").append(": ").append(escapeMarkdown(notify.getProjectName()));
builder.append(Icons.PROJECT).append(": ").append(escapeMarkdown(notify.getProjectName()));
}
builder

View File

@ -37,7 +37,7 @@ public class NewMrForReviewNotifyGenerator implements NotifyBoxAnswerGenerator<N
builder.append(Icons.HR);
if (checkNotNull(notify.getProjectName())) {
builder.append("Project").append(": ").append(escapeMarkdown(notify.getProjectName()));
builder.append(Icons.PROJECT).append(": ").append(escapeMarkdown(notify.getProjectName()));
}
builder