release/2025-04-25: Patch Updates to packages

This commit is contained in:
Dave Richer
2025-04-26 12:16:46 -04:00
parent 2e7f827c3f
commit 3c4ed3ba0c
8 changed files with 34 additions and 789 deletions

View File

@@ -6,7 +6,7 @@
* @returns {*}
*/
const vsstaIntegrationMiddleware = (req, res, next) => {
if (req.headers["vssta-integration-secret"] !== process.env.VSSTA_INTEGRATION_SECRET) {
if (req?.headers?.["vssta-integration-secret"] !== process.env?.VSSTA_INTEGRATION_SECRET) {
return res.status(401).send("Unauthorized");
}