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_asset.rb
Zach Gollwitzer 3c0fdd84ee Fix mode bug
2024-10-18 18:25:17 -04:00

11 lines
134 B
Ruby

class OtherAsset < ApplicationRecord
include Accountable
def color
"#12B76A"
end
def mode_required?
false
end
end