Merge branch 'main' into feature/add_rna_type_de_champs

This commit is contained in:
Damien Le Thiec 2022-10-11 15:36:46 +02:00 committed by GitHub
commit 73f6063c87
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
173 changed files with 1194 additions and 1316 deletions

View file

@ -20,5 +20,20 @@
# type_de_champ_id :integer
#
class Champs::IbanChamp < Champ
validates_with IbanValidator
validates_with IbanValidator, if: -> { validation_context != :brouillon }
after_validation :format_iban
def for_api
to_s.gsub(/\s+/, '')
end
def for_api_v2
for_api
end
private
def format_iban
self.value = value&.gsub(/\s+/, '')&.gsub(/(.{4})/, '\0 ')
end
end