Open chrisgeek opened 4 years ago
Could you try replacing class: {Group: SerializableGroup }
with class: {Group: ::SerializableGroup }
?
Thanks for your response, tried what you suggested but I got the same error message.
Maybe a Rails autoloading thing? Is there a require
in the controller for the serializers/group_serializer
file?
Based on the original issue it looks like the name of the file (serializers/group_serializer.rb
) does not match the name of the class (SerializableGroup
) both because of the ordering of terms group
and serializable
and because the file name is serializers
while the class says Serializable
so the Rails autoloader might not be able to find and load that class dynamically.
I had the same issue. Changed the name of the file to match the new Serializable class (Like this: serializable_equipment for the class: SerializableEquipment) and it worked for me.
It is as @matt-glover implied. A rails autoloading thing with the filename
Hi, I am trying to switch from AMS to jsonapi-rails gem, but after creating serializers, I still get an
uninitialized constant GroupsController::SerializableGroup
error message from the gemserializers/group_serializer.rb
I'm not sure what I am doing wrong really.