fix: improve overall rendering (#10)

This commit is contained in:
Walid
2022-02-09 23:27:54 +01:00
committed by GitHub
parent ee73885fe9
commit 48debe8638
12 changed files with 111 additions and 96 deletions

View File

@ -8,7 +8,7 @@ export const guildSchema = {
id,
name: Type.String({ minLength: 1, maxLength: 30 }),
icon: Type.Union([Type.String({ format: 'uri-reference' }), Type.Null()]),
description: Type.Union([Type.String({ maxLength: 160 }), Type.Null()]),
description: Type.Union([Type.String({ maxLength: 120 }), Type.Null()]),
createdAt: date.createdAt,
updatedAt: date.updatedAt
}