diff options
| author | かっこかり <67428053+kakkokari-gtyih@users.noreply.github.com> | 2024-04-14 21:30:24 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-04-14 21:30:24 +0900 |
| commit | bba3097765317cbf95d09627961b5b5dce16a972 (patch) | |
| tree | 49df1638d6622dd807281a0324a199593e049084 /packages/backend/src/models | |
| parent | fix(backend): incorrect logic for determining whether Quote or not (#13700) (diff) | |
| download | misskey-bba3097765317cbf95d09627961b5b5dce16a972.tar.gz misskey-bba3097765317cbf95d09627961b5b5dce16a972.tar.bz2 misskey-bba3097765317cbf95d09627961b5b5dce16a972.zip | |
enhance: クリップのノート数を表示するように (#13686)
* enhance: クリップのノート数を表示できるように
* Update Changelog
Diffstat (limited to 'packages/backend/src/models')
| -rw-r--r-- | packages/backend/src/models/json-schema/clip.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/packages/backend/src/models/json-schema/clip.ts b/packages/backend/src/models/json-schema/clip.ts index ca4886c978..c4e7055cd8 100644 --- a/packages/backend/src/models/json-schema/clip.ts +++ b/packages/backend/src/models/json-schema/clip.ts @@ -52,5 +52,9 @@ export const packedClipSchema = { type: 'boolean', optional: true, nullable: false, }, + notesCount: { + type: 'integer', + optional: true, nullable: false, + }, }, } as const; |