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

class Api::V1::Admin::Trends::TagsController < Api::BaseController
  protect_from_forgery with: :exception

  before_action -> { authorize_if_got_token! :'admin:read' }
  before_action :require_staff!
  before_action :set_tags

  def index
    render json: @tags, each_serializer: REST::Admin::TagSerializer
  end

  private

  def set_tags
    @tags = Trends.tags.get(false, limit_param(10))
  end
end