From 1b3b78aa47c82b676ce946d2c94d4cc31e54e091 Mon Sep 17 00:00:00 2001 From: Pranav C Date: Wed, 12 Apr 2023 18:46:55 +0530 Subject: [PATCH] fix: org user file upload handler typo correction Signed-off-by: Pranav C --- .../nocodb-nest/src/modules/org-users/org-users.controller.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/nocodb-nest/src/modules/org-users/org-users.controller.ts b/packages/nocodb-nest/src/modules/org-users/org-users.controller.ts index 7d0a94ac74..54012ca2e3 100644 --- a/packages/nocodb-nest/src/modules/org-users/org-users.controller.ts +++ b/packages/nocodb-nest/src/modules/org-users/org-users.controller.ts @@ -49,8 +49,7 @@ export class OrgUsersController { blockApiTokenAccess: true, }) async userUpdate(@Body() body, @Param('userId') userId: string) { - return; - await this.orgUsersService.userUpdate({ + return await this.orgUsersService.userUpdate({ user: body, userId, });