diff options
author | Matthew Miller <matthew@millerti.me> | 2020-05-22 12:40:28 -0700 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2020-05-22 12:40:28 -0700 |
commit | 40fc370e2babab0cafffb19d37d170a2e06ee46f (patch) | |
tree | cbf5bac42a248576fc737390413789fb202931b4 /example/index.js | |
parent | 579eddd0b06a3d2f97e1dcf33f15c0b45bfc19eb (diff) |
Rearrange method unpacking
Diffstat (limited to 'example/index.js')
-rw-r--r-- | example/index.js | 4 |
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(); |