1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-21 22:29:38 +02:00
Maybe/app/models/account/other_asset.rb

19 lines
254 B
Ruby
Raw Normal View History

2024-02-02 23:09:35 +00:00
class Account::OtherAsset < ApplicationRecord
include Accountable
2024-02-02 23:06:29 +00:00
def icon
"icon-bank-accounts.svg"
end
def type_name
"Other Asset"
end
def color
{
background: "bg-[#EDF7F4]",
text: "text-[#1BD5A1]"
}
end
2024-02-02 23:09:35 +00:00
end