diff --git a/backend/src/user/user.controller.ts b/backend/src/user/user.controller.ts index b95b2314..4bbfcb37 100644 --- a/backend/src/user/user.controller.ts +++ b/backend/src/user/user.controller.ts @@ -1,7 +1,7 @@ import { Controller } from '@nestjs/common'; import { UserService } from './user.service'; -@Controller('user') +@Controller('users') export class UserController { constructor(private readonly userService: UserService) {} }