From 94462b60c9be1a69fb279540618aff48d32190fe Mon Sep 17 00:00:00 2001 From: Nils-Johan Gynther Date: Sat, 18 Apr 2026 15:02:38 +0200 Subject: [PATCH] fix(controller): update users controller route to remove 'api' prefix --- backend/src/users/users.controller.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/users/users.controller.ts b/backend/src/users/users.controller.ts index 319c3150..e7d5f786 100644 --- a/backend/src/users/users.controller.ts +++ b/backend/src/users/users.controller.ts @@ -48,7 +48,7 @@ class UpdateProfileDto { email?: string; } -@Controller('api/users') +@Controller('users') export class UsersController { constructor(private readonly usersService: UsersService) {}