3128fdf
: - Secret can be a string or function - Compatibility with older node versionsb0cd246
: - Fixed dependencies
This commit is contained in:
parent
3128fdfee2
commit
3f980a5c71
@ -111,9 +111,9 @@ function noQsMethod(options) {
|
||||
|
||||
function authorize(options, onConnection) {
|
||||
options = xtend({ decodedPropertyName: 'decoded_token', encodedPropertyName: 'encoded_token' }, options);
|
||||
|
||||
if (typeof options.secret !== 'string') {
|
||||
throw new Error(`Provided secret "${options.secret}" is invalid, must be of type string.`)
|
||||
|
||||
if (typeof options.secret !== 'string' && typeof options.secret !== 'function') {
|
||||
throw new Error('Provided secret "' + options.secret + '" is invalid, must be of type string or function.')
|
||||
}
|
||||
|
||||
if (!options.handshake) {
|
||||
|
@ -23,6 +23,8 @@
|
||||
},
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"jsonwebtoken": "^8.3.0",
|
||||
"xtend": "~2.1.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/socket.io": "~1.4.29",
|
||||
@ -31,11 +33,9 @@
|
||||
"mocha": "~3.2.0",
|
||||
"request": "~2.81.0",
|
||||
"serve-static": "^1.12.1",
|
||||
"jsonwebtoken": "^8.3.0",
|
||||
"xtend": "~2.1.2",
|
||||
"server-destroy": "~1.0.1",
|
||||
"should": "~11.2.1",
|
||||
"socket.io": "^1.7.3",
|
||||
"socket.io-client": "^1.7.3"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user