Merge pull request #465 from Skgland/330-followup

#330 followup
This commit is contained in:
Yannick Bungers 2020-08-13 21:13:17 +02:00 committed by GitHub
commit c42d2223e8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 3 deletions

View file

@ -140,7 +140,7 @@ these are rarely used for various reasons.
| variables | example values | description |
| --------- | ------ | ----------- |
| `ldap` | `{providerName: ..., url: ..., bindDn: ..., bindCredentials: ..., searchBase: ..., searchFilter: ..., searchAttributes: ..., usernameField: ..., useridField: ..., tlsca: ...}` | An object detailing the LDAP connection. Refer to the [LDAP-AD guide](guides/auth/ldap-AD.md) for more details! |
| `ldap` | `{providerName: ..., url: ..., bindDn: ..., bindCredentials: ..., searchBase: ..., searchFilter: ..., searchAttributes: ..., usernameField: ..., useridField: ..., starttls: ..., tlsca: ...}` | An object detailing the LDAP connection. Refer to the [LDAP-AD guide](guides/auth/ldap-AD.md) for more details! |
### OAuth2 Login

View file

@ -127,6 +127,7 @@ export interface Config {
usernameField: string;
useridField: string;
tlsca: string;
starttls?: boolean;
tlsOptions: {
ca: string[];
};

View file

@ -35,7 +35,7 @@ const umzug = new Umzug({
},
// Required wrapper function required to prevent winstion issue
// https://github.com/winstonjs/winston/issues/1577
logging: message => {
logging: (message): void => {
logger.info(message)
},
storage: 'sequelize',