Method: RunSignup::DataCoercion#coerce_value_for_api

Defined in:
lib/run_signup/data_coercion.rb

#coerce_value_for_api(value) ⇒ Object



43
44
45
46
47
48
49
50
51
52
# File 'lib/run_signup/data_coercion.rb', line 43

def coerce_value_for_api value
  case value
  when true
    'T'
  when false
    'F'
  else
    value
  end
end