fga-gpp-mds/Falko-2017.2-BackEnd

View on GitHub
app/models/grade.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Grade < ApplicationRecord
  belongs_to :project

  validates :weight_burndown, presence: true
  validates :weight_velocity, presence: true
  validates :weight_debts, presence: true
end