mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
8 lines
240 B
Ruby
8 lines
240 B
Ruby
class TagsController < ApplicationController
|
|
layout 'public'
|
|
|
|
def show
|
|
@statuses = Tag.find_by!(name: params[:id].downcase).statuses.order('id desc').with_includes.with_counters.paginate(page: params[:page], per_page: 10)
|
|
end
|
|
end
|