🗑added public folder content to gitignore

This commit is contained in:
canove
2020-07-08 14:29:16 -03:00
parent b1bed3623e
commit aaf81019d5
45 changed files with 26 additions and 52 deletions

View File

@@ -6,7 +6,6 @@ const ContactController = require("../controllers/ContactController");
const routes = express.Router();
routes.get("/contacts", isAuth, ContactController.index);
// routes.post(ContactController.postCreateContact);
routes.post("/contacts", isAuth, ContactController.store);