class PaperTrail::RelatedChanges::Serializer::Skippable
Constants
- SKIP_COLUMNS
Public Class Methods
match(attribute)
click to toggle source
# File lib/paper_trail/related_changes/serializer/skippable.rb, line 3 def self.match(attribute) !!SKIP_COLUMNS.detect do |sk| sk == attribute.to_sym end end
serialize(*)
click to toggle source
# File lib/paper_trail/related_changes/serializer/skippable.rb, line 15 def self.serialize(*); end