mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-20 21:59:38 +02:00
18 lines
256 B
Ruby
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
|