mirror of
https://github.com/we-promise/sure.git
synced 2026-04-10 15:54:48 +00:00
12 lines
134 B
Ruby
12 lines
134 B
Ruby
class OtherAsset < ApplicationRecord
|
|
include Accountable
|
|
|
|
def color
|
|
"#12B76A"
|
|
end
|
|
|
|
def mode_required?
|
|
false
|
|
end
|
|
end
|