about summary refs log tree commit diff
path: root/app/controllers/api/v1/featured_tags/suggestions_controller.rb
blob: 8c1b81a0f007add18175283368216c494d09500c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

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

  def index
    render json: @most_used_tags, each_serializer: REST::TagSerializer
  end

  private

  def set_most_used_tags
    @most_used_tags = Tag.most_used(current_account).where.not(id: current_account.featured_tags).limit(10)
  end
end