From: James Moger Date: Wed, 10 Jul 2013 00:57:55 +0000 (-0400) Subject: Added External account type to enum X-Git-Tag: v1.3.0~12 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=cb78b89ba770dc4edbd0f0a6ff70469cb8e0615c;p=gitblit.git Added External account type to enum --- diff --git a/src/main/java/com/gitblit/Constants.java b/src/main/java/com/gitblit/Constants.java index f3ad5fac..aa3767c3 100644 --- a/src/main/java/com/gitblit/Constants.java +++ b/src/main/java/com/gitblit/Constants.java @@ -480,7 +480,7 @@ public class Constants { } public static enum AccountType { - LOCAL, LDAP, REDMINE, SALESFORCE, WINDOWS; + LOCAL, EXTERNAL, LDAP, REDMINE, SALESFORCE, WINDOWS; public boolean isLocal() { return this == LOCAL;