mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-20 13:49:39 +02:00
11 lines
138 B
Ruby
11 lines
138 B
Ruby
class OtherLiability < ApplicationRecord
|
|
include Accountable
|
|
|
|
def color
|
|
"#737373"
|
|
end
|
|
|
|
def mode_required?
|
|
false
|
|
end
|
|
end
|