diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2023-01-08 10:54:45 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2023-01-08 10:54:45 +0900 |
| commit | 2e2ed1385fbae6c102156a08fce2defb642e52c5 (patch) | |
| tree | b1e9053cf40d82c3542a73952e3c9cc88baad570 /packages/backend/src/core/PollService.ts | |
| parent | tweak note componsnt (diff) | |
| download | sharkey-2e2ed1385fbae6c102156a08fce2defb642e52c5.tar.gz sharkey-2e2ed1385fbae6c102156a08fce2defb642e52c5.tar.bz2 sharkey-2e2ed1385fbae6c102156a08fce2defb642e52c5.zip | |
delete pollVote notification
Diffstat (limited to 'packages/backend/src/core/PollService.ts')
| -rw-r--r-- | packages/backend/src/core/PollService.ts | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/packages/backend/src/core/PollService.ts b/packages/backend/src/core/PollService.ts index 3cc9b0cc9b..abc598ab76 100644 --- a/packages/backend/src/core/PollService.ts +++ b/packages/backend/src/core/PollService.ts @@ -92,13 +92,6 @@ export class PollService { choice: choice, userId: user.id, }); - - // Notify - this.createNotificationService.createNotification(note.userId, 'pollVote', { - notifierId: user.id, - noteId: note.id, - choice: choice, - }); } @bindThis |