docs: remove bannerColor

This is a fixup for commit a673647fba.
This commit is contained in:
Johann150 2023-06-05 22:20:13 +02:00
parent ac482e6eec
commit f181a8805d
Signed by untrusted user: Johann150
GPG key ID: 9EE6577A2A06F8F1
2 changed files with 0 additions and 11 deletions

View file

@ -32,11 +32,6 @@ export const packedUserLiteSchema = {
type: 'any', type: 'any',
nullable: true, optional: false, nullable: true, optional: false,
}, },
avatarColor: {
type: 'any',
nullable: true, optional: false,
default: null,
},
isAdmin: { isAdmin: {
type: 'boolean', type: 'boolean',
nullable: false, optional: true, nullable: false, optional: true,
@ -122,11 +117,6 @@ export const packedUserDetailedNotMeOnlySchema = {
type: 'any', type: 'any',
nullable: true, optional: false, nullable: true, optional: false,
}, },
bannerColor: {
type: 'any',
nullable: true, optional: false,
default: null,
},
isLocked: { isLocked: {
type: 'boolean', type: 'boolean',
nullable: false, optional: false, nullable: false, optional: false,

View file

@ -33,7 +33,6 @@ export type UserLite = {
export type UserDetailed = UserLite & { export type UserDetailed = UserLite & {
bannerBlurhash: string | null; bannerBlurhash: string | null;
bannerColor: string | null;
bannerUrl: string | null; bannerUrl: string | null;
birthday: string | null; birthday: string | null;
createdAt: DateString; createdAt: DateString;