make it run

This commit is contained in:
Anika Raemer 2025-09-22 20:46:31 +02:00
parent c17bb05f0a
commit db480a88e0
7 changed files with 54 additions and 1 deletions

View file

@ -16,6 +16,7 @@ const mapper = new UserDtoEntityMapper();
const authController = new AuthController(userRepository, mapper);
router.post("/login", async (req, res) => {
console.log("login point called")
try {
const requestDto: LoginRequestDto = req.body;
const responseDto = await authController.login(requestDto);