mirror of
https://github.com/swissmakers/swiss-datashare.git
synced 2026-04-15 03:43:14 +02:00
7 lines
211 B
TypeScript
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)
|
|
) {}
|