2
1
mirror of https://github.com/Thream/socketio-jwt.git synced 2024-07-21 09:38:31 +02:00

Merge pull request #1 from TeamSynergy/close_default

Close default
This commit is contained in:
Screeny 2013-11-15 01:53:00 -08:00
commit f5adaa7956
2 changed files with 4 additions and 4 deletions

View File

@ -22,14 +22,14 @@ function authorize(options) {
secret: null,
store: null,
success: function(data, accept){accept(null, true)},
fail: function(data, message, critical, accept){accept(null, !critical)}
fail: function(data, message, critical, accept){accept(null, false)}
};
var auth = xtend({}, defaults, options );
var auth = xtend(defaults, options);
auth.userProperty = auth.passport._userProperty || 'user';
if (typeof auth.cookieParser === 'undefined' || !auth.cookieParser) {
if (!auth.cookieParser) {
throw new Error('cookieParser is required use connect.cookieParser or express.cookieParser');
}

View File

@ -1,6 +1,6 @@
{
"name": "passport.socketio",
"version": "1.2.1",
"version": "2.1.1",
"description": "access passport.js authenticated user information from socket.io",
"main": "lib/index.js",
"keywords": [