mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-23 07:09:39 +02:00
16 lines
301 B
Ruby
16 lines
301 B
Ruby
|
class Address < ApplicationRecord
|
||
|
belongs_to :addressable, polymorphic: true
|
||
|
|
||
|
def to_s
|
||
|
I18n.t("address.format",
|
||
|
line1: line1,
|
||
|
line2: line2,
|
||
|
county: county,
|
||
|
locality: locality,
|
||
|
region: region,
|
||
|
country: country,
|
||
|
postal_code: postal_code
|
||
|
)
|
||
|
end
|
||
|
end
|