about summary refs log tree commit diff
path: root/app/serializers/rest/mute_serializer.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/serializers/rest/mute_serializer.rb')
-rw-r--r--app/serializers/rest/mute_serializer.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/app/serializers/rest/mute_serializer.rb b/app/serializers/rest/mute_serializer.rb
new file mode 100644
index 000000000..043a2f059
--- /dev/null
+++ b/app/serializers/rest/mute_serializer.rb
@@ -0,0 +1,15 @@
+# frozen_string_literal: true
+
+class REST::MuteSerializer < ActiveModel::Serializer
+  include RoutingHelper
+  
+  attributes :id, :account, :target_account, :created_at, :hide_notifications
+
+  def account
+    REST::AccountSerializer.new(object.account)
+  end
+
+  def target_account
+    REST::AccountSerializer.new(object.target_account)
+  end
+end
\ No newline at end of file