fix(controller): update users controller route to remove 'api' prefix

This commit is contained in:
Nils-Johan Gynther
2026-04-18 15:02:38 +02:00
parent 0598e027ac
commit 94462b60c9
+1 -1
View File
@@ -48,7 +48,7 @@ class UpdateProfileDto {
email?: string;
}
@Controller('api/users')
@Controller('users')
export class UsersController {
constructor(private readonly usersService: UsersService) {}