ActiveModel Serializer converts underscores to hyphens
Here's the problem I ran into. I setup rails in the API mode and configured to use ActiveModelSerializers and follow the JSON5 spec. But turns out, that converts all the field names in my JSON responses to contain hyphens instead of underscores.
The serializer was converting the database fieldI don't like that! I want my field names to stay the same. Untouched and pristine, like the frozen lakes of Antartica. Turns out you can ask your serializer not not mess with your field names. Just add the following line in your active_model_serializer.rbfirst_name
intofirst-name
in my JSON responses.
ActiveModel::Serializer.config.key_transform = :unaltered