From bb530b8b8cdf2ef25b8e1045012caf9404cd4b00 Mon Sep 17 00:00:00 2001 From: Ryan Pendergast Date: Wed, 14 Feb 2024 10:03:53 -0600 Subject: [PATCH] Fix readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1b5625af..f3330a71 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ The examples utilize the [Feide OpenIdp identity provider](https://openidp.feide The SAML identity provider will redirect you to the URL provided by the `path` configuration. ```javascript -const SamlStrategy = require('passport-saml').Strategy; +const SamlStrategy = require('@node-saml/passport-saml').Strategy; [...] passport.use( @@ -66,7 +66,7 @@ passport.use( You can pass a `getSamlOptions` parameter to `MultiSamlStrategy` which will be called before the SAML flows. Passport-SAML will pass in the request object so you can decide which configuration is appropriate. ```javascript -const { MultiSamlStrategy } = require('passport-saml'); +const { MultiSamlStrategy } = require('@node-saml/passport-saml'); [...] passport.use(