IO-2433 Basic completion webhook, S3 upload, audit trail.
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user