Skip to content
Snippets Groups Projects
Commit 7b8d50c4 authored by Daniel Gerhardt's avatar Daniel Gerhardt
Browse files

Rename auth provider type EXTERNAL to SSO

parent 8ad7b505
No related merge requests found
......@@ -28,7 +28,7 @@ public class AuthenticationProvider {
public enum Type {
ANONYMOUS,
USERNAME_PASSWORD,
EXTERNAL
SSO
}
private String id;
......@@ -51,7 +51,7 @@ public class AuthenticationProvider {
|| provider instanceof AuthenticationProviderProperties.Ldap) {
type = Type.USERNAME_PASSWORD;
} else {
type = Type.EXTERNAL;
type = Type.SSO;
}
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment