mirror of
https://github.com/Thream/socketio-jwt.git
synced 2024-07-21 09:38:31 +02:00
Update README.md
This commit is contained in:
parent
b111b3f327
commit
2d257bfb1e
10
README.md
10
README.md
@ -91,9 +91,17 @@ function onAuthorizeFail(data, message, error, accept){
|
|||||||
throw new Error(message);
|
throw new Error(message);
|
||||||
} else {
|
} else {
|
||||||
console.log(message);
|
console.log(message);
|
||||||
accept(null, false); // the same accept-method as above
|
// the same accept-method as above in the success-callback
|
||||||
|
accept(null, false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// or
|
||||||
|
// This function accepts every client unless there's an error
|
||||||
|
function onAuthorizeFail(data, message, error, accept){
|
||||||
|
console.log(message);
|
||||||
|
accept(null, !error);
|
||||||
|
}
|
||||||
```
|
```
|
||||||
You can use the `message` parameter for debugging/logging/etc uses.
|
You can use the `message` parameter for debugging/logging/etc uses.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user