Commit 191bb542 authored by simon's avatar simon

chore: eslint it

parent a3ed0be0
...@@ -56,7 +56,7 @@ you need: ...@@ -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 = { ...@@ -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 { ...@@ -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 = { ...@@ -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 { ...@@ -142,6 +141,7 @@ interface ILDAPAuthOptions {
``` ```
Example Example
```js ```js
c = { c = {
authentication: 'LDAPAuth', authentication: 'LDAPAuth',
...@@ -154,7 +154,7 @@ c = { ...@@ -154,7 +154,7 @@ c = {
servername: 'ldap.google.com' servername: 'ldap.google.com'
} }
} }
} };
``` ```
#### IMAP #### IMAP
...@@ -171,6 +171,7 @@ interface IIMAPAuthOptions { ...@@ -171,6 +171,7 @@ interface IIMAPAuthOptions {
``` ```
Example Example
```js ```js
c = { c = {
authentication: 'IMAPAuth', authentication: 'IMAPAuth',
...@@ -180,7 +181,7 @@ c = { ...@@ -180,7 +181,7 @@ c = {
useSecureTransport: true, useSecureTransport: true,
validHosts: ['hokify.com'] validHosts: ['hokify.com']
} }
} };
``` ```
#### SMTP #### SMTP
...@@ -197,6 +198,7 @@ interface ISMTPAuthOptions { ...@@ -197,6 +198,7 @@ interface ISMTPAuthOptions {
``` ```
Example Example
```js ```js
c = { c = {
authentication: 'IMAPAuth', authentication: 'IMAPAuth',
...@@ -206,7 +208,7 @@ c = { ...@@ -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 { ...@@ -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() { ...@@ -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')
} }
}); });
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment