From c8c1c643978df3d801abc7a34d314ae72bc1a8ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Diego=20Iv=C3=A1n?= <80365304+Diego-lvan@users.noreply.github.com> Date: Wed, 24 Jul 2024 19:51:19 -0600 Subject: [PATCH] camiando param a query en url --- backend/src/user/user.controller.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/user/user.controller.ts b/backend/src/user/user.controller.ts index dc2bf5fb..18ec00e5 100644 --- a/backend/src/user/user.controller.ts +++ b/backend/src/user/user.controller.ts @@ -28,7 +28,7 @@ export class UserController { } } - @Get('prefered-categories:lang') + @Get('prefered-categories') @ApiBearerAuth('jwt') @ApiQuery({ name: 'lang', type: String }) @UseGuards(AuthUserGuard) -- GitLab