Skip to content

Commit

Permalink
working on get all method
Browse files Browse the repository at this point in the history
Signed-off-by: Tiago Barbosa <tbarbos@hotmail.com>
  • Loading branch information
t1agob committed May 15, 2024
1 parent 80ed7c9 commit 1439bf2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion order-management/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@ app.get("/order", async (req: Request, res: Response) => {
}
});

return res.status(200).send(result);
console.log(result.results);

return res.status(200).send(result.results);
});

// GET order by id
Expand Down

0 comments on commit 1439bf2

Please sign in to comment.