summaryrefslogtreecommitdiffhomepage
path: root/example/index.js
diff options
context:
space:
mode:
authorMatthew Miller <matthew@millerti.me>2020-05-22 15:25:47 -0700
committerMatthew Miller <matthew@millerti.me>2020-05-22 15:25:47 -0700
commit78390a909b5c0ae0baccd6a607abc0261542576e (patch)
tree24117dc2e396a9e8da26f66b5991b8e1953910a6 /example/index.js
parent61edee2f24aad68cdab53eb53e03c4ad3057c585 (diff)
Tweak assertion verification path in example
Diffstat (limited to 'example/index.js')
-rw-r--r--example/index.js4
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({