feat: first commit
This commit is contained in:
6
server/src/system/config/dto/update-config.dto.ts
Normal file
6
server/src/system/config/dto/update-config.dto.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
import { OmitType, PartialType } from '@nestjs/mapped-types';
|
||||
import { CreateConfigDto } from './create-config.dto';
|
||||
|
||||
export class UpdateConfigDto extends PartialType(
|
||||
OmitType(CreateConfigDto, ['key'] as const),
|
||||
) {}
|
||||
Reference in New Issue
Block a user