Files
swiss-datashare/backend/src/user/dto/updateOwnUser.dto.ts

7 lines
199 B
TypeScript
Raw Normal View History

2022-12-05 10:02:19 +01:00
import { OmitType, PartialType } from "@nestjs/mapped-types";
import { UserDTO } from "./user.dto";
export class UpdateOwnUserDTO extends PartialType(
OmitType(UserDTO, ["isAdmin"] as const)
) {}