instance method
encryptable_rich_texts
Ruby on Rails 7.1.6
Since v7.0.10 PrivateSignature
encryptable_rich_texts()
No documentation comment.
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
Defined in actiontext/lib/action_text/encryption.rb line 32
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionText::Encryption