diff options
author | Matthew Miller <matthew@millerti.me> | 2020-07-12 11:20:02 -0700 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2020-07-12 11:20:02 -0700 |
commit | a39a8326e2ed90c8d79ca443849284ed610628dd (patch) | |
tree | ab631ba0eb40ad47bf5976b0b33be29f5ef987e3 /example/index.js | |
parent | cef3c22250843b02b1b127b603d982c3ce0d806e (diff) |
Comment out FIDO conformance router
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( { |