about summary refs log tree commit diff
path: root/app/serializers/activitypub/image_serializer.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/serializers/activitypub/image_serializer.rb')
-rw-r--r--app/serializers/activitypub/image_serializer.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/app/serializers/activitypub/image_serializer.rb b/app/serializers/activitypub/image_serializer.rb
new file mode 100644
index 000000000..a015c6b1b
--- /dev/null
+++ b/app/serializers/activitypub/image_serializer.rb
@@ -0,0 +1,19 @@
+# frozen_string_literal: true
+
+class ActivityPub::ImageSerializer < ActiveModel::Serializer
+  include RoutingHelper
+
+  attributes :type, :media_type, :url
+
+  def type
+    'Image'
+  end
+
+  def url
+    full_asset_url(object.url(:original))
+  end
+
+  def media_type
+    object.content_type
+  end
+end