summaryrefslogtreecommitdiffhomepage
path: root/example/index.js
diff options
context:
space:
mode:
authorMatthew Miller <matthew@millerti.me>2020-05-22 12:40:28 -0700
committerMatthew Miller <matthew@millerti.me>2020-05-22 12:40:28 -0700
commit40fc370e2babab0cafffb19d37d170a2e06ee46f (patch)
treecbf5bac42a248576fc737390413789fb202931b4 /example/index.js
parent579eddd0b06a3d2f97e1dcf33f15c0b45bfc19eb (diff)
Rearrange method unpacking
Diffstat (limited to 'example/index.js')
-rw-r--r--example/index.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/example/index.js b/example/index.js
index 46a7513..af0c65a 100644
--- a/example/index.js
+++ b/example/index.js
@@ -6,10 +6,10 @@ const express = require('express');
const {
// Registration ("Attestation")
generateAttestationOptions,
- verifyAssertionResponse,
+ verifyAttestationResponse,
// Login ("Assertion")
generateAssertionOptions,
- verifyAttestationResponse,
+ verifyAssertionResponse,
} = require('@webauthntine/server');
const app = express();