mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-21 14:19:39 +02:00
18 lines
254 B
Ruby
18 lines
254 B
Ruby
class Account::OtherAsset < ApplicationRecord
|
|
include Accountable
|
|
|
|
def icon
|
|
"icon-bank-accounts.svg"
|
|
end
|
|
|
|
def type_name
|
|
"Other Asset"
|
|
end
|
|
|
|
def color
|
|
{
|
|
background: "bg-[#EDF7F4]",
|
|
text: "text-[#1BD5A1]"
|
|
}
|
|
end
|
|
end
|