diff options
Diffstat (limited to 'example/index.js')
-rw-r--r-- | example/index.js | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/example/index.js b/example/index.js index 4615014..59cb3c4 100644 --- a/example/index.js +++ b/example/index.js @@ -11,7 +11,7 @@ const fs = require('fs'); const express = require('express'); -const FIDOConformanceRoutes = require('./fido-conformance'); +// const FIDOConformanceRoutes = require('./fido-conformance'); const { // Registration ("Attestation") @@ -53,6 +53,7 @@ const port = 443; app.use(express.static('./public/')); app.use(express.json()); +// app.use('/fido', FIDOConformanceRoutes); /** * RP ID represents the "scope" of websites on which a authenticator should be usable. The Origin @@ -287,8 +288,6 @@ app.post('/verify-assertion', (req, res) => { res.send({ verified }); }); -app.use('/fido', FIDOConformanceRoutes); - https .createServer( { |