Skip to content
This repository has been archived by the owner on Jul 31, 2021. It is now read-only.

Commit

Permalink
Merge pull request #118 from luisbritos/webauthn-roaming-typo
Browse files Browse the repository at this point in the history
[ESD-10050] fix MFA factor name typo
  • Loading branch information
luisbritos authored Nov 13, 2020
2 parents 33a855c + c885ee9 commit a90c76c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "auth0-source-control-extension-tools",
"version": "4.1.11",
"version": "4.1.12",
"description": "Supporting tools for the Source Control extensions",
"main": "lib/index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ constants.GUARDIAN_FACTORS = [
'otp',
'email',
'duo',
'webauth-roaming'
'webauthn-roaming'
];
constants.GUARDIAN_POLICIES = [
'all-applications',
Expand Down
4 changes: 2 additions & 2 deletions tests/auth0/handlers/guardianFactors.tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ describe('#guardianFactors handler', () => {
{ name: 'otp', enabled: true },
{ name: 'email', enabled: true },
{ name: 'duo', enabled: false },
{ name: 'webauth-roaming', enabled: false }
{ name: 'webauthn-roaming', enabled: false }
];

const auth0 = {
Expand All @@ -84,7 +84,7 @@ describe('#guardianFactors handler', () => {
{ name: 'otp', enabled: true },
{ name: 'email', enabled: true },
{ name: 'duo', enabled: false },
{ name: 'webauth-roaming', enabled: false }
{ name: 'webauthn-roaming', enabled: false }
];

const auth0 = {
Expand Down

0 comments on commit a90c76c

Please sign in to comment.