about summary refs log tree commit diff
path: root/app/controllers/api
diff options
context:
space:
mode:
authortrwnh <a@trwnh.com>2020-12-23 09:43:38 -0600
committerGitHub <noreply@github.com>2020-12-23 16:43:38 +0100
commit4950e59cdcd59a181238d3d504398de188e19319 (patch)
treeb0bb57f5f0fd34468e049069f9157690a5940c5f /app/controllers/api
parentde57efd055c8c6af9e6e2aa450cea790546aabbc (diff)
Use existing FeaturedTag serializer and delete AccountFeaturedTag serializer (#15415)
* Update featured_tags_controller.rb

* Update featured_tag_serializer.rb

* Update featured_tag_serializer.rb

* Delete account_featured_tag_serializer.rb

* please codeclimate

* please codeclimate
Diffstat (limited to 'app/controllers/api')
-rw-r--r--app/controllers/api/v1/accounts/featured_tags_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/api/v1/accounts/featured_tags_controller.rb b/app/controllers/api/v1/accounts/featured_tags_controller.rb
index dc01b577c..0101fb469 100644
--- a/app/controllers/api/v1/accounts/featured_tags_controller.rb
+++ b/app/controllers/api/v1/accounts/featured_tags_controller.rb
@@ -7,7 +7,7 @@ class Api::V1::Accounts::FeaturedTagsController < Api::BaseController
   respond_to :json
 
   def index
-    render json: @featured_tags, each_serializer: REST::AccountFeaturedTagSerializer
+    render json: @featured_tags, each_serializer: REST::FeaturedTagSerializer
   end
 
   private