LiteracyVolunteersOfMA/lvm-rails

View on GitHub
app/models/tutor_comment.rb

Summary

Maintainability
A
0 mins
Test Coverage
class TutorComment < ApplicationRecord
  belongs_to :tutor

  validates :content, presence: true
  validates :tutor,   presence: true
end