infusionvlc/ConexionFelina

View on GitHub
app/models/donation.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Donation < ApplicationRecord
  MINIMUM_AMOUNT_VALUE = 0

  belongs_to :user

  validates :amount, :date, presence: true
  validates :amount, numericality: {only_integer: true, greater_than: MINIMUM_AMOUNT_VALUE}

  validates_with DonationValidator
end