summaryrefslogtreecommitdiff
path: root/pkg/auth/anon/auth.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/auth/anon/auth.go')
-rw-r--r--pkg/auth/anon/auth.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/auth/anon/auth.go b/pkg/auth/anon/auth.go
index 52d2827..52b9ffc 100644
--- a/pkg/auth/anon/auth.go
+++ b/pkg/auth/anon/auth.go
@@ -31,8 +31,8 @@ func (a *Authenticator) GetLabel() string {
return Label
}
-func (a *Authenticator) CheckCredentials(cred *creds.Credentials) bool {
- return true
+func (a *Authenticator) CheckCredentials(cred *creds.Credentials) (bool, error) {
+ return true, nil
}
func (a *Authenticator) NeedsCredentials() bool {