note.tsのchannelを正しい形にしたことにより表出化した型チェックエラーを修正 (#12395)

Co-authored-by: osamu <46447427+sam-osamu@users.noreply.github.com>
This commit is contained in:
おさむのひと 2023-11-21 15:12:05 +09:00 committed by GitHub
parent 77ac51a680
commit b5be0e5780
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 2 deletions

View File

@ -134,11 +134,19 @@ export const packedNoteSchema = {
},
name: {
type: 'string',
optional: false, nullable: true,
optional: false, nullable: false,
},
color: {
type: 'string',
optional: false, nullable: false,
},
isSensitive: {
type: 'boolean',
optional: true, nullable: false,
optional: false, nullable: false,
},
allowRenoteToExternal: {
type: 'boolean',
optional: false, nullable: false,
},
},
},