mirror of
https://github.com/CodeforLeipzig/stadtratmonitor.git
synced 2025-04-20 07:11:33 +02:00
Refactor and expand Paper validations
This commit is contained in:
parent
d6571e4042
commit
ebca521e2f
6 changed files with 90 additions and 9 deletions
12
lib/parseable_date_validator.rb
Normal file
12
lib/parseable_date_validator.rb
Normal file
|
@ -0,0 +1,12 @@
|
|||
class ParseableDateValidator < ActiveModel::EachValidator
|
||||
|
||||
def validate_each(record, attribute, value)
|
||||
raw_value = record.read_attribute_before_type_cast(attribute)
|
||||
return nil if raw_value.nil?
|
||||
Date.parse(raw_value)
|
||||
nil
|
||||
rescue ArgumentError => e
|
||||
record.errors[attribute] << (options[:message] || I18n.t("errors.messages.unparseable_date"))
|
||||
end
|
||||
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue