1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-20 13:49:39 +02:00
Maybe/app/models/other_liability.rb
Zach Gollwitzer 3c0fdd84ee Fix mode bug
2024-10-18 18:25:17 -04:00

11 lines
138 B
Ruby

class OtherLiability < ApplicationRecord
include Accountable
def color
"#737373"
end
def mode_required?
false
end
end