fga-gpp-mds/Falko-2017.2-BackEnd

View on GitHub
app/models/retrospective.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Retrospective < ApplicationRecord
  belongs_to :sprint

  validates :sprint_report, length: { maximum: 1500 }
  validates :positive_points, presence: true, length: { maximum: 500 }
  validates :negative_points, presence: true, length: { maximum: 500 }
  validates :improvements, presence: true, length: { maximum: 500 }
end