Last Sync: 2022-04-30 14:03:37

This commit is contained in:
thomasabishop 2022-04-30 14:03:37 +01:00
parent 163d80ee4c
commit a99102808f
3 changed files with 1 additions and 3 deletions

View file

@ -129,9 +129,8 @@ app.get("/api/posts/:year/:month", (req, res) => {
We would get the following back: We would get the following back:
````json ````json
{ {
sortBy: "name" "sortBy": "name"
} }
```` ````
@ -210,5 +209,4 @@ app.delete("/api/course/:id", (req, res) => {
res.send(course); res.send(course);
}); });
```` ````