I am new to MEAN stack, and trying to get some basic posts. I am getting TypeError: Cannot read properties of undefined (reading 'title') when issuing post. This works when changing todo-route.js from
title: req.body.title,
content: req.body.content
To
title: "SomeTextTitle",
content: "Some Content"
I have a disconnect on how the req body is passed to the post function
todo-route.js
todo-repo.js


