From 03232453be7624bc2fc8a942e8c280353606fe8b Mon Sep 17 00:00:00 2001 From: James Moger <james.moger@gitblit.com> Date: Fri, 21 Jun 2013 08:30:15 -0400 Subject: [PATCH] Improve readability of Gerrit change ref and added tooltip --- src/main/java/com/gitblit/Constants.java | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/src/main/java/com/gitblit/Constants.java b/src/main/java/com/gitblit/Constants.java index cd0fea6..f3ad5fa 100644 --- a/src/main/java/com/gitblit/Constants.java +++ b/src/main/java/com/gitblit/Constants.java @@ -43,6 +43,8 @@ public static final String NOT_FEDERATED_ROLE = "#notfederated"; public static final String NO_ROLE = "#none"; + + public static final String EXTERNAL_ACCOUNT = "#externalAccount"; public static final String PROPERTIES_FILE = "gitblit.properties"; @@ -478,7 +480,7 @@ } public static enum AccountType { - LOCAL, LDAP, REDMINE; + LOCAL, LDAP, REDMINE, SALESFORCE, WINDOWS; public boolean isLocal() { return this == LOCAL; -- Gitblit v1.9.1