Files
swiss-datashare/backend/src/user/dto/updateOwnUser.dto.ts
2022-12-05 15:53:24 +01:00

7 lines
211 B
TypeScript

import { OmitType, PartialType } from "@nestjs/mapped-types";
import { UserDTO } from "./user.dto";
export class UpdateOwnUserDTO extends PartialType(
OmitType(UserDTO, ["isAdmin", "password"] as const)
) {}