Add favorites to notifications.

This commit is contained in:
Roger Braun 2017-09-11 20:41:05 +02:00
commit bcce3e5dd2
2 changed files with 6 additions and 2 deletions

View file

@ -20,7 +20,7 @@ defmodule Pleroma.Notification do
Repo.all(query)
end
def create_notifications(%Activity{id: id, data: %{"to" => to, "type" => type}} = activity) when type in ["Create"] do
def create_notifications(%Activity{id: id, data: %{"to" => to, "type" => type}} = activity) when type in ["Create", "Like"] do
users = User.get_notified_from_activity(activity)
notifications = Enum.map(users, fn (user) -> create_notification(activity, user) end)