mirror of
https://github.com/we-promise/sure.git
synced 2026-04-14 01:24:06 +00:00
19 lines
256 B
Ruby
19 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
|