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