Browse Source

fix: org user file upload handler typo correction

Signed-off-by: Pranav C <pranavxc@gmail.com>
pull/5444/head
Pranav C 2 years 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, blockApiTokenAccess: true,
}) })
async userUpdate(@Body() body, @Param('userId') userId: string) { async userUpdate(@Body() body, @Param('userId') userId: string) {
return; return await this.orgUsersService.userUpdate({
await this.orgUsersService.userUpdate({
user: body, user: body,
userId, userId,
}); });

Loading…
Cancel
Save