Sewdoh

Results 2 comments of Sewdoh

I am also having an issue with delete. I don’t understand how it works: the url has an :id in it in the route file, how do I pass this...

I figured out the error on delete. The delete works but the success code was wrong: `return res.status(204).json({status:204, message: "Succesfully Deleted Item"})` should be: `return res.status(200).json({status:200, message: "Succesfully Deleted Item"})`