mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-26 20:56:48 +00:00
6 lines
109 B
Ruby
6 lines
109 B
Ruby
module AddressDisplay
|
|
def full_name_reverse
|
|
[lastname, firstname].reject(&:blank?).join(" ")
|
|
end
|
|
end
|