chore: eslint it

This commit is contained in:
simon 2020-02-23 20:49:57 +01:00
parent a3ed0be02d
commit 191bb54264
2 changed files with 16 additions and 13 deletions

View File

@ -77,8 +77,6 @@ var config = {
see config.js in root
### Authentications
#### Google LDAP
@ -100,6 +98,7 @@ interface IGoogleLDAPAuthOptions {
```
Example
```js
c = {
// GoogleLDAPAuth (optimized for google auth)
@ -111,7 +110,7 @@ c = {
cert: fs.readFileSync('ldap.gsuite.hokify.com.40567.crt')
}
}
}
};
```
#### LDAP
@ -142,6 +141,7 @@ interface ILDAPAuthOptions {
```
Example
```js
c = {
authentication: 'LDAPAuth',
@ -154,7 +154,7 @@ c = {
servername: 'ldap.google.com'
}
}
}
};
```
#### IMAP
@ -171,6 +171,7 @@ interface IIMAPAuthOptions {
```
Example
```js
c = {
authentication: 'IMAPAuth',
@ -180,7 +181,7 @@ c = {
useSecureTransport: true,
validHosts: ['hokify.com']
}
}
};
```
#### SMTP
@ -197,6 +198,7 @@ interface ISMTPAuthOptions {
```
Example
```js
c = {
authentication: 'IMAPAuth',
@ -206,7 +208,7 @@ c = {
useSecureTransport: true,
validHosts: ['gmail.com']
}
}
};
```
#### Static Auth
@ -223,6 +225,7 @@ interface IStaticAuthOtions {
```
Example
```js
c = {
authentication: 'StaticAuth',
@ -233,7 +236,7 @@ c = {
{ username: 'admin', password: 'cool' }
]
}
}
};
```
## Usage

View File

@ -12,7 +12,7 @@ describe('test ldap auth', function() {
tlsOptions: {
servername: 'ldap.google.com',
key: fs.readFileSync('./ldap.gsuite.hokify.com.40567.key'),
cert: fs.readFileSync('./ldap.gsuite.hokify.com.40567.crt'),
cert: fs.readFileSync('./ldap.gsuite.hokify.com.40567.crt')
}
});