method

encryptable_rich_texts

Importance_0
v7.1.3.4 - Show latest stable - 0 notes - Class: Encryption
encryptable_rich_texts() private

No documentation

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

Hide source
# File actiontext/lib/action_text/encryption.rb, line 32
      def encryptable_rich_texts
        @encryptable_rich_texts ||= self.class.rich_text_association_names
          .filter_map { |attribute_name| send(attribute_name) }
          .find_all { |record| record.is_a?(ActionText::EncryptedRichText) }
      end
Register or log in to add new notes.