]> PHS Git Server - phs-api.git/commitdiff
Fixing db container name.
authorcharleswrayjr <charleswrayjr@gmail.com>
Thu, 4 Sep 2025 09:29:20 +0000 (04:29 -0500)
committercharleswrayjr <charleswrayjr@gmail.com>
Thu, 4 Sep 2025 09:29:20 +0000 (04:29 -0500)
src/routes/git.routes.js

index 4734d9d26e44136d0753a194f60ed5e4ec0fa10f..6c80c2cf9e05c2c53b4026e65948fbb38c690fb3 100644 (file)
@@ -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;