9 lines
122 B
Ruby
9 lines
122 B
Ruby
|
|
module Freeformable
|
||
|
|
extend ActiveSupport::Concern
|
||
|
|
included do
|
||
|
|
def other?
|
||
|
|
label == "Other"
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|