payment
This commit is contained in:
@@ -39,8 +39,8 @@ export class UsersController {
|
||||
|
||||
@ApiBody({ type: UpdateUserDto })
|
||||
@Patch('public/user/update')
|
||||
async updateUser(@UserId() userId: string, , @Body() dto: UpdateUserDto) {
|
||||
const user = await this.userService.updateUser(userId, , dto);
|
||||
async updateUser(@UserId() userId: string, @Body() dto: UpdateUserDto) {
|
||||
const user = await this.userService.updateUser(userId, dto);
|
||||
return user;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user