1
0
Fork 0

fix: user `id` and `totpVerified` can't be changed by user

This commit is contained in:
Elias Schneider 2024-02-11 16:19:19 +01:00
parent f52dffdaac
commit e663da45b1
No known key found for this signature in database
GPG Key ID: 07E623B294202B6C
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
import { OmitType, PartialType } from "@nestjs/swagger";
import { PartialType, PickType } from "@nestjs/swagger";
import { UserDTO } from "./user.dto";
export class UpdateOwnUserDTO extends PartialType(
OmitType(UserDTO, ["isAdmin", "password"] as const),
PickType(UserDTO, ["username", "email"] as const)
) {}