diff options
Diffstat (limited to 'example/index.js')
-rw-r--r-- | example/index.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/example/index.js b/example/index.js index c686b3c..149131a 100644 --- a/example/index.js +++ b/example/index.js @@ -97,8 +97,10 @@ app.get('/generate-assertion-options', (req, res) => { )); }); -app.post('/verify-registration', (req, res) => { +app.post('/verify-assertion', (req, res) => { const { body } = req; + + console.log('verifying assertion:', body); }); https.createServer({ |