Delete pending notification requests on block and notification mutes (#31310)

This commit is contained in:
Claire 2024-08-06 12:07:16 +02:00 committed by GitHub
parent 9d0cafd06b
commit 5d890ebc57
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 0 deletions

View File

@ -7,6 +7,7 @@ class AfterBlockService < BaseService
clear_home_feed!
clear_list_feeds!
clear_notification_requests!
clear_notifications!
clear_conversations!
end
@ -28,4 +29,8 @@ class AfterBlockService < BaseService
def clear_notifications!
Notification.where(account: @account).where(from_account: @target_account).in_batches.delete_all
end
def clear_notification_requests!
NotificationRequest.where(account: @account, from_account: @target_account).destroy_all
end
end