about summary refs log tree commit diff
path: root/app/controllers/tags_controller.rb
blob: d99aea2ebeb56c5b9df5f6e1b24eeaa2eab952ce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

class TagsController < ApplicationController
  layout 'public'

  def show
    @tag      = Tag.find_by(name: params[:id].downcase)
    @statuses = @tag.nil? ? [] : Status.as_tag_timeline(@tag, current_account, params[:local]).paginate_by_max_id(20, params[:max_id])
    @statuses = cache_collection(@statuses, Status)
  end
end