Skip to content

How to: use with PaperTrail

Shamim edited this page Nov 9, 2015 · 2 revisions

Using with PaperTrail

paper_trail uses yaml as the default object serializer which causes some issues with carrierwave objects if you are using multiple file uploads. In order to make it work you either need to use mount_on option with your image gallery or change the default serializer to be json.

PaperTrail.serializer = PaperTrail::Serializers::JSON
Clone this wiki locally