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