about summary refs log tree commit diff
path: root/app/controllers/api/v1/featured_tags/suggestions_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/api/v1/featured_tags/suggestions_controller.rb')
-rw-r--r--app/controllers/api/v1/featured_tags/suggestions_controller.rb3
1 files changed, 0 insertions, 3 deletions
diff --git a/app/controllers/api/v1/featured_tags/suggestions_controller.rb b/app/controllers/api/v1/featured_tags/suggestions_controller.rb
index fb27ef88b..8c1b81a0f 100644
--- a/app/controllers/api/v1/featured_tags/suggestions_controller.rb
+++ b/app/controllers/api/v1/featured_tags/suggestions_controller.rb
@@ -2,12 +2,9 @@
 
 class Api::V1::FeaturedTags::SuggestionsController < Api::BaseController
   before_action -> { doorkeeper_authorize! :read, :'read:accounts' }, only: :index
-
   before_action :require_user!
   before_action :set_most_used_tags, only: :index
 
-  respond_to :json
-
   def index
     render json: @most_used_tags, each_serializer: REST::TagSerializer
   end