method

serialize

Importance_0
Ruby on Rails latest stable (v7.1.3.2) - 0 notes - Class: EncryptedAttributeType
serialize(value) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/encryption/encrypted_attribute_type.rb, line 39
      def serialize(value)
        if serialize_with_oldest?
          serialize_with_oldest(value)
        else
          serialize_with_current(value)
        end
      end
Register or log in to add new notes.