Affix/rpress

View on GitHub
app/controllers/category_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class CategoryController < ApplicationController
    def index
        @category = Category.where("category_slug='#{params[:slug]}'").first
        @title = @category.category_title

        @posts = @category.posts
    end
end