Добавил Icons.PROJECT
This commit is contained in:
parent
ea65a98778
commit
aee809304a
@ -21,6 +21,7 @@ public class Icons {
|
|||||||
public static final String BUILD = "\uD83D\uDEE0";
|
public static final String BUILD = "\uD83D\uDEE0";
|
||||||
public static final String LINK = "\uD83D\uDD17";
|
public static final String LINK = "\uD83D\uDD17";
|
||||||
public static final String REVIEWER = "\uD83D\uDD0E";
|
public static final String REVIEWER = "\uD83D\uDD0E";
|
||||||
|
public static final String PROJECT = "Project";
|
||||||
|
|
||||||
private Icons() {
|
private Icons() {
|
||||||
utilityClass();
|
utilityClass();
|
||||||
|
@ -39,7 +39,7 @@ public class NewMrForAssigneeNotifyGenerator implements NotifyBoxAnswerGenerator
|
|||||||
builder.append(Icons.HR);
|
builder.append(Icons.HR);
|
||||||
|
|
||||||
if (checkNotNull(notify.getProjectName())) {
|
if (checkNotNull(notify.getProjectName())) {
|
||||||
builder.append("Project").append(": ").append(escapeMarkdown(notify.getProjectName()));
|
builder.append(Icons.PROJECT).append(": ").append(escapeMarkdown(notify.getProjectName()));
|
||||||
}
|
}
|
||||||
|
|
||||||
builder
|
builder
|
||||||
|
@ -37,7 +37,7 @@ public class NewMrForReviewNotifyGenerator implements NotifyBoxAnswerGenerator<N
|
|||||||
builder.append(Icons.HR);
|
builder.append(Icons.HR);
|
||||||
|
|
||||||
if (checkNotNull(notify.getProjectName())) {
|
if (checkNotNull(notify.getProjectName())) {
|
||||||
builder.append("Project").append(": ").append(escapeMarkdown(notify.getProjectName()));
|
builder.append(Icons.PROJECT).append(": ").append(escapeMarkdown(notify.getProjectName()));
|
||||||
}
|
}
|
||||||
|
|
||||||
builder
|
builder
|
||||||
|
Loading…
Reference in New Issue
Block a user