diff options
author | Joe Chen <jc@unknwon.io> | 2023-02-02 21:25:25 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-02 21:25:25 +0800 |
commit | c53a1998c589a544b25d53f6e6fdf0f24a4df25b (patch) | |
tree | 1c3c9d693ba551eecfbc535be942e40b5acf9cf7 /internal/auth/ldap | |
parent | 614382fec0ba05149785539ab93560d4d42c194d (diff) |
all: replace `interface{}` with `any` (#7330)
Co-authored-by: deepsource-autofix[bot] <62050782+deepsource-autofix[bot]@users.noreply.github.com>
Diffstat (limited to 'internal/auth/ldap')
-rw-r--r-- | internal/auth/ldap/provider.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/auth/ldap/provider.go b/internal/auth/ldap/provider.go index 9cceed47..c7077d8e 100644 --- a/internal/auth/ldap/provider.go +++ b/internal/auth/ldap/provider.go @@ -29,7 +29,7 @@ func NewProvider(directBind bool, cfg *Config) auth.Provider { func (p *Provider) Authenticate(login, password string) (*auth.ExternalAccount, error) { username, fn, sn, email, isAdmin, succeed := p.config.searchEntry(login, password, p.directBind) if !succeed { - return nil, auth.ErrBadCredentials{Args: map[string]interface{}{"login": login}} + return nil, auth.ErrBadCredentials{Args: map[string]any{"login": login}} } if username == "" { @@ -61,7 +61,7 @@ func (p *Provider) Authenticate(login, password string) (*auth.ExternalAccount, }, nil } -func (p *Provider) Config() interface{} { +func (p *Provider) Config() any { return p.config } |