mirror of
https://github.com/CodeforLeipzig/stadtratmonitor.git
synced 2025-04-20 07:11:33 +02:00
Fix a bunch of rubocop offenses
This commit is contained in:
parent
106c6800a4
commit
4e1e8b798a
17 changed files with 57 additions and 222 deletions
|
@ -1,12 +1,13 @@
|
|||
class ParseableDateValidator < ActiveModel::EachValidator
|
||||
# frozen_string_literal: true
|
||||
|
||||
def validate_each(record, attribute, value)
|
||||
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.to_json)
|
||||
nil
|
||||
rescue ArgumentError => e
|
||||
record.errors[attribute] << (options[:message] || I18n.t("errors.messages.unparseable_date"))
|
||||
rescue ArgumentError
|
||||
record.errors[attribute] << (options[:message] || I18n.t('errors.messages.unparseable_date'))
|
||||
end
|
||||
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue