From: charleswrayjr Date: Thu, 4 Sep 2025 09:29:20 +0000 (-0500) Subject: Fixing db container name. X-Git-Url: https://git.phasecustomsoft.com/stylesheets/static/git-favicon.png?a=commitdiff_plain;h=01977b34a0a924668a6ee54978600cffa5033dfc;p=phs-api.git Fixing db container name. --- diff --git a/src/routes/git.routes.js b/src/routes/git.routes.js index 4734d9d..6c80c2c 100644 --- a/src/routes/git.routes.js +++ b/src/routes/git.routes.js @@ -4,7 +4,7 @@ const { validateAuth } = require('../middleware/routeHelpers'); const gitController = require('../controllers/git.controller'); module.exports = (passport) => { - router.use( validateAuth( passport ) ); + // router.use( validateAuth( passport ) ); router.post('/create-repo', gitController.createRepo); return router;