Make notifications about new statuses from muted threads read

This commit is contained in:
Sergey Suprunenko 2020-08-17 00:07:23 +02:00
commit 25c69e271a
No known key found for this signature in database
GPG key ID: 5DCA7D1BE3914F9C
4 changed files with 10 additions and 3 deletions

View file

@ -246,7 +246,10 @@ defmodule Pleroma.NotificationTest do
in_reply_to_status_id: activity.id
})
assert Notification.create_notification(activity, muter)
notification = Notification.create_notification(activity, muter)
assert notification.id
assert notification.seen
end
test "it disables notifications from strangers" do
@ -320,6 +323,7 @@ defmodule Pleroma.NotificationTest do
{:ok, [notification]} = Notification.create_notifications(status)
assert notification
refute notification.seen
end
test "it creates notifications when someone likes user's status with a filtered word" do
@ -333,6 +337,7 @@ defmodule Pleroma.NotificationTest do
{:ok, [notification]} = Notification.create_notifications(activity_two)
assert notification
refute notification.seen
end
end