Skip to content

Commit

Permalink
Fix readme
Browse files Browse the repository at this point in the history
  • Loading branch information
rynop authored Feb 14, 2024
1 parent 0e34bc8 commit bb530b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down Expand Up @@ -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(
Expand Down

0 comments on commit bb530b8

Please sign in to comment.