Skip to content

Commit

Permalink
fix failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ciur committed Feb 16, 2024
1 parent 20c4b35 commit 080661a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions auth_server/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ class Settings(BaseSettings):
papermerge__auth__google_client_secret: str | None = None
papermerge__auth__github_client_secret: str | None = None

papermerge__auth__ldap_uri: str | None # e.g. ldap.trusel.net
papermerge__auth__ldap_uri: str | None = None # e.g. ldap.trusel.net
papermerge__auth__ldap_use_ssl: bool = True
# e.g. uid={username},ou=People,dc=ldap,dc=trusel,dc=net
papermerge__auth__ldap_user_dn_format: str | None
papermerge__auth__ldap_email_attr: str | None # e.g. email
papermerge__auth__ldap_user_dn_format: str | None = None
papermerge__auth__ldap_email_attr: str | None = None # e.g. email
# if there is an error retrieving ldap_email_attr, the
# fallback user email will be set to username@<email-domain-fallback>
papermerge__auth__ldap_user_email_domain_fallback: str = 'example.com'
Expand Down

0 comments on commit 080661a

Please sign in to comment.