tiny_serializer
tiny_serializer copied to clipboard
Simple Ruby JSON Serialization DSL. Replaces active_model_serializers.
Results
1
tiny_serializer issues
Sort by
recently updated
recently updated
newest added
Currently if a polymorphic association is added to a serializer for instance: ``` class BoardSerializer < TinySerializer attribute :id belongs_to :boardable end ``` and the serializer is instantiated as so:...