1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-20 21:59:38 +02:00
Maybe/app/models/account/depository.rb
2024-02-03 02:50:09 +00:00

18 lines
256 B
Ruby

class Account::Depository < ApplicationRecord
include Accountable
def icon
"icon-bank-accounts.svg"
end
def type_name
"Bank Accounts"
end
def color
{
background: "bg-[#EAF4FF]",
text: "text-[#3492FB]"
}
end
end