mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-31 02:59:39 +02:00
* Remve styling configuration for account types out * No need to tailwind config for models
7 lines
115 B
Ruby
7 lines
115 B
Ruby
class Account::Depository < ApplicationRecord
|
|
include Accountable
|
|
|
|
def type_name
|
|
"Bank Accounts"
|
|
end
|
|
end
|