Affix/rpress

View on GitHub
app/models/category.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Category < ActiveRecord::Base
    has_many :posts
    has_many :tags, through: :posts
end