Browse Source

fix: org user file upload handler typo correction

Signed-off-by: Pranav C <pranavxc@gmail.com>
pull/5444/head
Pranav C 1 year ago
parent
commit
1b3b78aa47
  1. 3
      packages/nocodb-nest/src/modules/org-users/org-users.controller.ts

3
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,
});

Loading…
Cancel
Save