mirror of
https://github.com/stonith404/pingvin-share.git
synced 2025-01-15 01:14:27 -05:00
fix: user id
and totpVerified
can't be changed by user
This commit is contained in:
parent
f52dffdaac
commit
e663da45b1
1 changed files with 2 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
||||||
import { OmitType, PartialType } from "@nestjs/swagger";
|
import { PartialType, PickType } from "@nestjs/swagger";
|
||||||
import { UserDTO } from "./user.dto";
|
import { UserDTO } from "./user.dto";
|
||||||
|
|
||||||
export class UpdateOwnUserDTO extends PartialType(
|
export class UpdateOwnUserDTO extends PartialType(
|
||||||
OmitType(UserDTO, ["isAdmin", "password"] as const),
|
PickType(UserDTO, ["username", "email"] as const)
|
||||||
) {}
|
) {}
|
||||||
|
|
Loading…
Add table
Reference in a new issue