Genshin/GAKUEngine

View on GitHub
core/app/models/gaku/assignment_score.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Gaku
  class AssignmentScore < ActiveRecord::Base
    belongs_to :student

    validates :score, :student, presence: true
    validates_associated :student

    def to_s
      score
    end
  end
end