mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-20 05:39:39 +02:00
* Add loan and credit card views * Lint fix * Clean up overview card markup * Lint fix * Test fix
15 lines
301 B
Ruby
15 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
|