diff options
Diffstat (limited to 'src/models/repositories/notification.ts')
| -rw-r--r-- | src/models/repositories/notification.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/models/repositories/notification.ts b/src/models/repositories/notification.ts index 4a10368160..6407c19d4c 100644 --- a/src/models/repositories/notification.ts +++ b/src/models/repositories/notification.ts @@ -70,7 +70,7 @@ export const packedNotificationSchema = { type: { type: 'string' as const, optional: false as const, nullable: false as const, - enum: ['follow', 'receiveFollowRequest', 'mention', 'reply', 'renote', 'quote', 'reaction', 'pollVote'], + enum: ['follow', 'followRequestAccepted', 'receiveFollowRequest', 'mention', 'reply', 'renote', 'quote', 'reaction', 'pollVote'], description: 'The type of the notification.' }, userId: { |