mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-08-02 12:05:19 +02:00
* Remve styling configuration for account types out * No need to tailwind config for models
7 lines
121 B
Ruby
7 lines
121 B
Ruby
class Account::OtherLiability < ApplicationRecord
|
|
include Accountable
|
|
|
|
def type_name
|
|
"Other Liability"
|
|
end
|
|
end
|