Skip to content

Commit

Permalink
Prefer simple authenticator over LDAP (#42)
Browse files Browse the repository at this point in the history
Allows to have local accounts that always work, even if there are LDAP
problems
  • Loading branch information
mxey authored and Luzifer committed Jun 14, 2019
1 parent 07f1014 commit 1e9446d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ import (
)

func registerModules() {
registerAuthenticator(simple.New(cookieStore))
registerAuthenticator(crowd.New())
registerAuthenticator(ldap.New(cookieStore))
registerAuthenticator(google.New(cookieStore))
registerAuthenticator(oidc.New(cookieStore))
registerAuthenticator(simple.New(cookieStore))
registerAuthenticator(token.New())
registerAuthenticator(auth_yubikey.New(cookieStore))

Expand Down

0 comments on commit 1e9446d

Please sign in to comment.