about summary refs log tree commit diff
path: root/app/serializers/rest/account_featured_tag_serializer.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/serializers/rest/account_featured_tag_serializer.rb')
-rw-r--r--app/serializers/rest/account_featured_tag_serializer.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/app/serializers/rest/account_featured_tag_serializer.rb b/app/serializers/rest/account_featured_tag_serializer.rb
deleted file mode 100644
index 84bef2e62..000000000
--- a/app/serializers/rest/account_featured_tag_serializer.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-# frozen_string_literal: true
-
-class REST::AccountFeaturedTagSerializer < ActiveModel::Serializer
-  include RoutingHelper
-
-  attributes :id, :name, :url
-
-  def id
-    object.tag.id.to_s
-  end
-
-  def url
-    short_account_tag_url(object.account, object.tag)
-  end
-end