Merge branch '394_user_tags' into 'develop'
[akkoma] / lib / pleroma / notification.ex
index ca4113d315f7df9ac353486080b8c1d46a47d477..a40b8f8c936a6844afba2773763a61864cc538ff 100644 (file)
@@ -110,13 +110,16 @@ defmodule Pleroma.Notification do
       notification = %Notification{user_id: user.id, activity: activity}
       {:ok, notification} = Repo.insert(notification)
       Pleroma.Web.Streamer.stream("user", notification)
+      Pleroma.Web.Push.send(notification)
       notification
     end
   end
 
+  def get_notified_from_activity(activity, local_only \\ true)
+
   def get_notified_from_activity(
         %Activity{data: %{"to" => _, "type" => type} = data} = activity,
-        local_only \\ true
+        local_only
       )
       when type in ["Create", "Like", "Announce", "Follow"] do
     recipients =
@@ -128,6 +131,8 @@ defmodule Pleroma.Notification do
     User.get_users_from_set(recipients, local_only)
   end
 
+  def get_notified_from_activity(_, local_only), do: []
+
   defp maybe_notify_to_recipients(
          recipients,
          %Activity{data: %{"to" => to, "type" => type}} = activity