chinwagsocial/app/controllers/tags_controller.rb

12 lines
312 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2016-11-06 01:20:05 +11:00
class TagsController < ApplicationController
layout 'public'
2016-11-06 01:20:05 +11:00
def show
2016-12-05 02:56:45 +11:00
@tag = Tag.find_by!(name: params[:id].downcase)
@statuses = @tag.statuses.order('id desc').paginate_by_max_id(20, params[:max_id])
@statuses = cache_collection(@statuses, Status)
2016-11-06 01:20:05 +11:00
end
end