Browse Source

Added External account type to enum

tags/v1.3.0
James Moger 10 years ago
parent
commit
cb78b89ba7
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/main/java/com/gitblit/Constants.java

+ 1
- 1
src/main/java/com/gitblit/Constants.java View File

@@ -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;

Loading…
Cancel
Save