diff options
author | James Moger <james.moger@gitblit.com> | 2013-07-09 20:57:55 -0400 |
---|---|---|
committer | James Moger <james.moger@gitblit.com> | 2013-07-09 20:57:55 -0400 |
commit | cb78b89ba770dc4edbd0f0a6ff70469cb8e0615c (patch) | |
tree | 5f0f8a54093edad6c057ebed2baa5965c23cf0d7 /src/main/java/com/gitblit | |
parent | 8c99a7929b48b4c4a33c80d0b6646f6e6bb563b5 (diff) | |
download | gitblit-cb78b89ba770dc4edbd0f0a6ff70469cb8e0615c.tar.gz gitblit-cb78b89ba770dc4edbd0f0a6ff70469cb8e0615c.zip |
Added External account type to enum
Diffstat (limited to 'src/main/java/com/gitblit')
-rw-r--r-- | src/main/java/com/gitblit/Constants.java | 2 |
1 files changed, 1 insertions, 1 deletions
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;
|