Affix/rpress

View on GitHub
app/controllers/tag_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class TagController < ApplicationController
    def index
        @tag = Tag.where("tag_slug='#{params[:slug]}'").first
        @posts = @tag.posts_by_tag
        Rails.logger.debug(@posts)
    end
end