fix(server): schema generation (#4424)
This commit is contained in:
parent
d8ecefaea5
commit
99e9c2ada6
1 changed files with 2 additions and 1 deletions
|
@ -1,4 +1,3 @@
|
||||||
import { SystemConfigThumbnailDto, SystemConfigTrashDto } from '@app/domain/system-config';
|
|
||||||
import { SystemConfig } from '@app/infra/entities';
|
import { SystemConfig } from '@app/infra/entities';
|
||||||
import { Type } from 'class-transformer';
|
import { Type } from 'class-transformer';
|
||||||
import { IsObject, ValidateNested } from 'class-validator';
|
import { IsObject, ValidateNested } from 'class-validator';
|
||||||
|
@ -10,6 +9,8 @@ import { SystemConfigOAuthDto } from './system-config-oauth.dto';
|
||||||
import { SystemConfigPasswordLoginDto } from './system-config-password-login.dto';
|
import { SystemConfigPasswordLoginDto } from './system-config-password-login.dto';
|
||||||
import { SystemConfigReverseGeocodingDto } from './system-config-reverse-geocoding.dto';
|
import { SystemConfigReverseGeocodingDto } from './system-config-reverse-geocoding.dto';
|
||||||
import { SystemConfigStorageTemplateDto } from './system-config-storage-template.dto';
|
import { SystemConfigStorageTemplateDto } from './system-config-storage-template.dto';
|
||||||
|
import { SystemConfigThumbnailDto } from './system-config-thumbnail.dto';
|
||||||
|
import { SystemConfigTrashDto } from './system-config-trash.dto';
|
||||||
|
|
||||||
export class SystemConfigDto implements SystemConfig {
|
export class SystemConfigDto implements SystemConfig {
|
||||||
@Type(() => SystemConfigFFmpegDto)
|
@Type(() => SystemConfigFFmpegDto)
|
||||||
|
|
Loading…
Reference in a new issue