about summary refs log tree commit diff
path: root/app/serializers/rest/search_serializer.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/serializers/rest/search_serializer.rb')
-rw-r--r--app/serializers/rest/search_serializer.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/app/serializers/rest/search_serializer.rb b/app/serializers/rest/search_serializer.rb
new file mode 100644
index 000000000..157f543ae
--- /dev/null
+++ b/app/serializers/rest/search_serializer.rb
@@ -0,0 +1,12 @@
+# frozen_string_literal: true
+
+class REST::SearchSerializer < ActiveModel::Serializer
+  attributes :hashtags
+
+  has_many :accounts, serializer: REST::AccountSerializer
+  has_many :statuses, serializer: REST::StatusSerializer
+
+  def hashtags
+    object.hashtags.map(&:name)
+  end
+end