chore: eslint it

master
simon 4 years ago
parent a3ed0be02d
commit 191bb54264

@ -56,7 +56,7 @@ you need:
3. Check config.js and adapt to your needs 3. Check config.js and adapt to your needs
- configure authentication: - configure authentication:
set authenticaiton to one of the provided authenticators. set authenticaiton to one of the provided authenticators.
```js ```js
var config = { var config = {
@ -77,8 +77,6 @@ var config = {
see config.js in root see config.js in root
### Authentications ### Authentications
#### Google LDAP #### Google LDAP
@ -100,6 +98,7 @@ interface IGoogleLDAPAuthOptions {
``` ```
Example Example
```js ```js
c = { c = {
// GoogleLDAPAuth (optimized for google auth) // GoogleLDAPAuth (optimized for google auth)
@ -111,7 +110,7 @@ c = {
cert: fs.readFileSync('ldap.gsuite.hokify.com.40567.crt') cert: fs.readFileSync('ldap.gsuite.hokify.com.40567.crt')
} }
} }
} };
``` ```
#### LDAP #### LDAP
@ -142,6 +141,7 @@ interface ILDAPAuthOptions {
``` ```
Example Example
```js ```js
c = { c = {
authentication: 'LDAPAuth', authentication: 'LDAPAuth',
@ -154,7 +154,7 @@ c = {
servername: 'ldap.google.com' servername: 'ldap.google.com'
} }
} }
} };
``` ```
#### IMAP #### IMAP
@ -171,6 +171,7 @@ interface IIMAPAuthOptions {
``` ```
Example Example
```js ```js
c = { c = {
authentication: 'IMAPAuth', authentication: 'IMAPAuth',
@ -180,7 +181,7 @@ c = {
useSecureTransport: true, useSecureTransport: true,
validHosts: ['hokify.com'] validHosts: ['hokify.com']
} }
} };
``` ```
#### SMTP #### SMTP
@ -197,6 +198,7 @@ interface ISMTPAuthOptions {
``` ```
Example Example
```js ```js
c = { c = {
authentication: 'IMAPAuth', authentication: 'IMAPAuth',
@ -206,7 +208,7 @@ c = {
useSecureTransport: true, useSecureTransport: true,
validHosts: ['gmail.com'] validHosts: ['gmail.com']
} }
} };
``` ```
#### Static Auth #### Static Auth
@ -223,17 +225,18 @@ interface IStaticAuthOtions {
``` ```
Example Example
```js ```js
c = { c = {
authentication: 'StaticAuth', authentication: 'StaticAuth',
authenticationOptions: { authenticationOptions: {
validCredentials: [ validCredentials: [
{ username: 'test', password: 'pwd' }, { username: 'test', password: 'pwd' },
{ username: 'user1', password: 'password' }, { username: 'user1', password: 'password' },
{ username: 'admin', password: 'cool' } { username: 'admin', password: 'cool' }
] ]
} }
} };
``` ```
## Usage ## Usage

@ -12,7 +12,7 @@ describe('test ldap auth', function() {
tlsOptions: { tlsOptions: {
servername: 'ldap.google.com', servername: 'ldap.google.com',
key: fs.readFileSync('./ldap.gsuite.hokify.com.40567.key'), 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')
} }
}); });

Loading…
Cancel
Save