mirror of
https://github.com/go-gitea/gitea
synced 2024-11-06 12:27:22 +01:00
27b351aba5
This PR extends #16594 to allow LDAP to be able to be set to skip local 2FA too. The technique used here would be extensible to PAM and SMTP sources. Signed-off-by: Andrew Thornton <art27@cantab.net>
29 lines
772 B
Go
29 lines
772 B
Go
// Copyright 2021 The Gitea Authors. All rights reserved.
|
|
// Use of this source code is governed by a MIT-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package ldap_test
|
|
|
|
import (
|
|
"code.gitea.io/gitea/models"
|
|
"code.gitea.io/gitea/services/auth"
|
|
"code.gitea.io/gitea/services/auth/source/ldap"
|
|
)
|
|
|
|
// This test file exists to assert that our Source exposes the interfaces that we expect
|
|
// It tightly binds the interfaces and implementation without breaking go import cycles
|
|
|
|
type sourceInterface interface {
|
|
auth.PasswordAuthenticator
|
|
auth.SynchronizableSource
|
|
auth.LocalTwoFASkipper
|
|
models.SSHKeyProvider
|
|
models.LoginConfig
|
|
models.SkipVerifiable
|
|
models.HasTLSer
|
|
models.UseTLSer
|
|
models.LoginSourceSettable
|
|
}
|
|
|
|
var _ (sourceInterface) = &ldap.Source{}
|