mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-20 14:11:11 +00:00
10 lines
222 B
Ruby
10 lines
222 B
Ruby
module KerberosSpnegoHelper
|
|
def allow_basic_auth?
|
|
true # different behavior in GitLab Enterprise Edition
|
|
end
|
|
|
|
def allow_kerberos_spnego_auth?
|
|
false # different behavior in GitLab Enterprise Edition
|
|
end
|
|
end
|