routes.js 662 B

1234567891011121314
  1. const home = require("./controllers/home");
  2. module.exports = function(app){
  3. app.get("/", home.displayInventory);
  4. app.get("/merchant/new", home.merchantSetup);
  5. app.get("/getrecipes", home.getCloverRecipes);
  6. app.post("/merchant/create", home.createMerchant);
  7. app.post("/merchant/update", home.updateMerchant);
  8. app.post("/ingredients/create", home.createNewIngredients); //update?
  9. app.post("/ingredients/createone", home.createIngredient); //update?
  10. app.get("/recipes", home.displayRecipes);
  11. app.post("/recipes/ingredients/remove", home.deleteRecipeIngredient); //update?
  12. app.get("/recipes/update", home.updateRecipes);
  13. }