For challenge 11, it looks like you’re returning all logs - not the logs of a specific user.
A GET
request to /api/users/:id/logs
will return the **user object **with a log
array of all the exercises added.
It should return the user object. Part of that user object should be an array with property user.log
that contains all of the excercise
objects added to the user.
Here’s what I got when I checked the user I just made:
{"_id":"620ad4bfa651bd87261f9646","username":"fcc_test_16448769902","count":45,"log":[{"description":"test","duration":60,"date":"Mon Jan 01 1990"},{"description":"test","duration":60,"date":"Mon Jan 01 1990"},{"description":"test","duration":60,"date":"Mon Feb 14 2022"},{"description":"test","duration":60,"date":"Mon Feb 14 2022"},{"description":"test","duration":60,"date":"Mon Feb 14 2022"},{"description":"test","duration":60,"date":"Mon Feb 14 2022"},{"description":"test","duration":60,"date":"Mon Feb 14 2022"},{"description":"test","duration":60,"date":"Mon Feb 14 2022"},{"description":"test","duration":60,"date":"Mon Feb 14 2022"},{"description":"test","duration":60,"date":"Mon Jan 01 1990"},{"description":"test","duration":60,"date":"Tue Jan 02 1990"},{"description":"test","duration":60,"date":"Mon Jan 01 1990"},{"description":"test","duration":60,"date":"Mon Jan 01 1990"},{"description":"test","duration":60,"date":"Mon Feb 14 2022"},{"description":"test","duration":60,"date":"Mon Feb 14 2022"},{"description":"test","duration":60,"date":"Mon Feb 14 2022"},{"description":"test","duration":60,"date":"Mon Feb 14 2022"},{"description":"test","duration":60,"date":"Mon Feb 14 2022"},{"description":"test","duration":60,"date":"Mon Feb 14 2022"},{"description":"test","duration":60,"date":"Mon Feb 14 2022"},{"description":"test","duration":60,"date":"Mon Jan 01 1990"},{"description":"test","duration":60,"date":"Tue Jan 02 1990"},{"description":"test","duration":60,"date":"Mon Jan 01 1990"},{"description":"test","duration":60,"date":"Mon Jan 01 1990"},{"description":"test","duration":60,"date":"Mon Feb 14 2022"},{"description":"test","duration":60,"date":"Mon Feb 14 2022"},{"description":"test","duration":60,"date":"Mon Feb 14 2022"},{"description":"test","duration":60,"date":"Mon Feb 14 2022"},{"description":"test","duration":60,"date":"Mon Feb 14 2022"},{"description":"test","duration":60,"date":"Mon Feb 14 2022"},{"description":"test","duration":60,"date":"Mon Feb 14 2022"},{"description":"test","duration":60,"date":"Mon Jan 01 1990"},{"description":"test","duration":60,"date":"Tue Jan 02 1990"},{"description":"test","duration":60,"date":"Mon Jan 01 1990"},{"description":"test","duration":60,"date":"Mon Jan 01 1990"},{"description":"test","duration":60,"date":"Mon Feb 14 2022"},{"description":"test","duration":60,"date":"Mon Feb 14 2022"},{"description":"test","duration":60,"date":"Mon Feb 14 2022"},{"description":"test","duration":60,"date":"Mon Feb 14 2022"},{"description":"test","duration":60,"date":"Mon Feb 14 2022"},{"description":"test","duration":60,"date":"Mon Feb 14 2022"},{"description":"test","duration":60,"date":"Mon Feb 14 2022"},{"description":"test","duration":60,"date":"Mon Jan 01 1990"},{"description":"test","duration":60,"date":"Tue Jan 02 1990"},{"description":"test excercise","duration":10,"date":"Tue Dec 20 2022"}]}
If you fixed that, the other challenges should pass 