From fa327ebf9bf7edbfbb403c2d063f4c5557a390ac Mon Sep 17 00:00:00 2001 From: Nevo David Date: Sun, 28 Jan 2024 16:22:14 +0700 Subject: [PATCH] feat: auth --- apps/backend/src/api/routes/auth.controller.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/backend/src/api/routes/auth.controller.ts b/apps/backend/src/api/routes/auth.controller.ts index 66e2f547..20e901ca 100644 --- a/apps/backend/src/api/routes/auth.controller.ts +++ b/apps/backend/src/api/routes/auth.controller.ts @@ -3,7 +3,7 @@ import {CreateOrgUserDto} from "@gitroom/nestjs-libraries/dtos/auth/create.org.u import {LoginUserDto} from "@gitroom/nestjs-libraries/dtos/auth/login.user.dto"; import {AuthService} from "@gitroom/backend/services/auth/auth.service"; -@Controller() +@Controller('/auth') export class AuthController { constructor( private _authService: AuthService