mirror of
https://github.com/dadosfera/maestro.git
synced 2026-09-15 20:54:48 +00:00
FIX: Update user accepting roleIds
This commit is contained in:
@@ -111,7 +111,7 @@ export class UsersController {
|
||||
@ApiOkResponse({ type: SetUserRolesRes })
|
||||
async setUserRoles(@User() user: RequestUser, @Body() body: SetUserRolesReq) {
|
||||
this.logger.info('createUser', { user });
|
||||
return await this.userService.setRoles(body);
|
||||
return await this.userService.setRoles(body, user.customer_id);
|
||||
}
|
||||
|
||||
@Put('role')
|
||||
@@ -143,6 +143,6 @@ export class UsersController {
|
||||
@Param('id') id: string,
|
||||
) {
|
||||
this.logger.info('updateUser', { user });
|
||||
return await this.userService.updateUser(body, id);
|
||||
return await this.userService.updateUser(body, id, user.customer_id);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user