add custom emoji reaction support
[akkoma] / lib / pleroma / web / activity_pub / object_validators / common_fields.ex
index 872f80ec3e429d7c42179d23c9df9f660fe9b1c5..011cf66ca709dab2c69adcc72c1c5d06cfb7063b 100644 (file)
@@ -65,4 +65,10 @@ defmodule Pleroma.Web.ActivityPub.ObjectValidators.CommonFields do
       field(:announcements, {:array, ObjectValidators.ObjectID}, default: [])
     end
   end
+
+  defmacro tag_fields do
+    quote bind_quoted: binding() do
+      embeds_many(:tag, TagValidator)
+    end
+  end
 end