JordanHatch/maslow-redux

View on GitHub
app/models/tagging.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Tagging < ActiveRecord::Base
  belongs_to :need
  belongs_to :tag

  validates :need, :tag, presence: true
end