This commit is contained in:
2026-01-14 11:29:24 +03:30
parent 1075dbc44f
commit 4ab9de447a
26 changed files with 1130 additions and 1710 deletions
@@ -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;
}