IO-2433 Basic completion webhook, S3 upload, audit trail.

This commit is contained in:
Patrick Fic
2026-02-27 15:44:23 -08:00
parent e25174ff97
commit 52f43a600c
8 changed files with 559 additions and 86 deletions

View File

@@ -8,9 +8,9 @@ const { esignWebhook } = require("../esign/webhook");
//router.use(validateFirebaseIdTokenMiddleware);
router.post("/new", withUserGraphQLClientMiddleware, newEsignDocument);
router.post("/distribute", withUserGraphQLClientMiddleware, distributeDocument);
router.post("/webhook", withUserGraphQLClientMiddleware, esignWebhook);
router.post("/new", validateFirebaseIdTokenMiddleware, withUserGraphQLClientMiddleware, newEsignDocument);
router.post("/distribute", validateFirebaseIdTokenMiddleware, withUserGraphQLClientMiddleware, distributeDocument);
router.post("/webhook", esignWebhook);
module.exports = router;