summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoryupix <yupi0982@outlook.jp>2023-11-29 08:08:06 +0900
committerGitHub <noreply@github.com>2023-11-29 08:08:06 +0900
commit3b3b908ccdf1f475c3f36df06d8da3cabe526a68 (patch)
treeae4098ee3c9a4f2401f21aa0e52f1802c10aba52
parent通知グルーピング設定の即時反映対応 (#12485) (diff)
downloadsharkey-3b3b908ccdf1f475c3f36df06d8da3cabe526a68.tar.gz
sharkey-3b3b908ccdf1f475c3f36df06d8da3cabe526a68.tar.bz2
sharkey-3b3b908ccdf1f475c3f36df06d8da3cabe526a68.zip
fix: packedNoteSchemaにclippedCountが抜けている (#12499)
-rw-r--r--packages/backend/src/models/json-schema/note.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/packages/backend/src/models/json-schema/note.ts b/packages/backend/src/models/json-schema/note.ts
index 392fa7e1cb..aa749943f0 100644
--- a/packages/backend/src/models/json-schema/note.ts
+++ b/packages/backend/src/models/json-schema/note.ts
@@ -186,6 +186,10 @@ export const packedNoteSchema = {
optional: false, nullable: false,
},
},
+ clippedCount: {
+ type: 'number',
+ optional: true, nullable: false,
+ },
myReaction: {
type: 'object',