Ignore incoming empty chat messages.
[akkoma] / lib / pleroma / activity.ex
index a35ccc9b415cff3ab73cb21c8f852b55a9cccdc1..a8154859a7f81429eac2b293c2a32cd44f8a34f9 100644 (file)
@@ -7,7 +7,8 @@ defmodule Pleroma.Activity do
     field :data, :map
     field :local, :boolean, default: true
     field :actor, :string
-    has_many :notifications, Notification
+    field :recipients, {:array, :string}
+    has_many :notifications, Notification, on_delete: :delete_all
 
     timestamps()
   end