Class: Mks::Rent::OfferItem

Inherits:
ApplicationRecord show all
Defined in:
app/models/mks/rent/offer_item.rb

Instance Method Summary collapse

Methods inherited from ApplicationRecord

#json, json

Instance Method Details

#validate_date_rangeObject



11
12
13
# File 'app/models/mks/rent/offer_item.rb', line 11

def validate_date_range
  errors.add(:from, :invalid_range, low: from, high: to) if from && to && from > to
end