LiteracyVolunteersOfMA/lvm-rails

View on GitHub
app/models/student_comment.rb

Summary

Maintainability
A
0 mins
Test Coverage
class StudentComment < ApplicationRecord
  belongs_to :student

  validates :content, presence: true
  validates :student, presence: true
end