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

class Api::V1::TrendsController < Api::BaseController
  before_action :set_tags

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

  private

  def set_tags
    @tags = TrendingTags.get(limit_param(10))
  end
end