hovancik/BSDSec

View on GitHub
app/models/tag.rb

Summary

Maintainability
A
0 mins
Test Coverage
B
85%
Tag has no descriptive comment
Missing frozen string literal comment.
Missing top-level documentation comment for `class Tag`.
class Tag < ApplicationRecord
extend FriendlyId
friendly_id :name, use: :slugged
 
has_many :taggings, dependent: :destroy
has_many :articles, through: :taggings
 
def to_s
name
end
end