Skip to content

Commit

Permalink
Fix broken reference to local module and missing export of the Strate…
Browse files Browse the repository at this point in the history
…gy constructor.
  • Loading branch information
JMLX42 committed Feb 17, 2016
1 parent d6935cb commit e53c716
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/strategy.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
var OpenIDConnectStrategy = require('passport-openidconnect').Strategy;
var passportAuthenticateWithCUstomClaims = require('PassportAuthenticateWithCustomClaims').PassportAuthenticateWithCustomClaims;
var passportAuthenticateWithCUstomClaims = require('./PassportAuthenticateWithCustomClaims').PassportAuthenticateWithCustomClaims;

function Strategy(options, verify)
{
Expand All @@ -13,3 +13,5 @@ function Strategy(options, verify)

return strategy;
};

module.exports = Strategy;

0 comments on commit e53c716

Please sign in to comment.