5 lines
97 B
Ruby
5 lines
97 B
Ruby
module AvisHelper
|
|
def safe_claimant_email(claimant)
|
|
claimant&.email || "inconnu"
|
|
end
|
|
end
|