mirror of
https://github.com/we-promise/sure.git
synced 2026-04-08 23:04:49 +00:00
12 lines
138 B
Ruby
12 lines
138 B
Ruby
class OtherLiability < ApplicationRecord
|
|
include Accountable
|
|
|
|
def color
|
|
"#737373"
|
|
end
|
|
|
|
def mode_required?
|
|
false
|
|
end
|
|
end
|