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