diff options
| author | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-11-07 13:02:46 +0900 |
|---|---|---|
| committer | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-11-07 13:02:46 +0900 |
| commit | edbe30a3df3ca4e2255f7532d26348fda942e5d3 (patch) | |
| tree | d70afcc3b8cabc34e09318b64c503b7287665763 /packages/backend/src/models | |
| parent | fix type (diff) | |
| download | misskey-edbe30a3df3ca4e2255f7532d26348fda942e5d3.tar.gz misskey-edbe30a3df3ca4e2255f7532d26348fda942e5d3.tar.bz2 misskey-edbe30a3df3ca4e2255f7532d26348fda942e5d3.zip | |
fix tuype
Diffstat (limited to 'packages/backend/src/models')
| -rw-r--r-- | packages/backend/src/models/json-schema/channel.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/packages/backend/src/models/json-schema/channel.ts b/packages/backend/src/models/json-schema/channel.ts index a7966ffdb3..e7613290d1 100644 --- a/packages/backend/src/models/json-schema/channel.ts +++ b/packages/backend/src/models/json-schema/channel.ts @@ -40,6 +40,11 @@ export const packedChannelSchema = { format: 'url', nullable: true, optional: false, }, + bannerId: { + type: 'string', + nullable: true, optional: false, + format: 'id', + }, pinnedNoteIds: { type: 'array', nullable: false, optional: false, |