Fixes typos

This commit is contained in:
kikito
2017-02-03 16:08:58 +01:00
parent ba87eaa47c
commit 386a5aa941
3 changed files with 3 additions and 3 deletions

View File

@@ -68,7 +68,7 @@ class Officing::Residence
end
def allowed_age?
Age.in_years(date_of_birth) <= User.minimum_required_age
Age.in_years(date_of_birth) >= User.minimum_required_age
end
def geozone

View File

@@ -32,7 +32,7 @@ class Verification::Management::Document
end
def under_age?(response)
response.date_of_birth && User.minimum_required_age < Age.in_years(response.date_of_birth)
response.date_of_birth.blank? || Age.in_years(response.date_of_birth) < User.minimum_required_age
end
def verified?

View File

@@ -36,7 +36,7 @@ class Verification::Residence
def allowed_age
return if errors[:date_of_birth].any?
errors.add(:date_of_birth, I18n.t('verification.residence.new.error_not_allowed_age')) unless Age.in_years(self.date_of_birth) <= User.minimum_required_age
errors.add(:date_of_birth, I18n.t('verification.residence.new.error_not_allowed_age')) unless Age.in_years(self.date_of_birth) >= User.minimum_required_age
end
def document_number_uniqueness