diff --git a/lib/strategy.js b/lib/strategy.js index 9ee5af8..c7b3a6f 100644 --- a/lib/strategy.js +++ b/lib/strategy.js @@ -1,5 +1,5 @@ var OpenIDConnectStrategy = require('passport-openidconnect').Strategy; -var passportAuthenticateWithCUstomClaims = require('PassportAuthenticateWithCustomClaims').PassportAuthenticateWithCustomClaims; +var passportAuthenticateWithCUstomClaims = require('./PassportAuthenticateWithCustomClaims').PassportAuthenticateWithCustomClaims; function Strategy(options, verify) { @@ -13,3 +13,5 @@ function Strategy(options, verify) return strategy; }; + +module.exports = Strategy;