Sha256: 6d138148fcb95d5e607915daadb1d7d834b444028149097f530b3d304cd84bee
Contents?: true
Size: 826 Bytes
Versions: 4
Compression:
Stored size: 826 Bytes
Contents
module BridgeCache class EnrollmentProfile < BridgeBaseModel extend BridgeCache::Data::BridgeModel belongs_to :enrollable, primary_key: BridgeCache.primary_key, polymorphic: true, optional: true before_validation :namespace_enrollable_type before_save :parse_json def namespace_enrollable_type self.enrollable_type = "BridgeCache::#{self.enrollable_type}" unless self.enrollable_type&.include? 'BridgeCache::' end def parse_json json = self.parse_config(self.config) self.config = json if json.present? end def self.parse_config(config) json = BridgeCache::Plugins::DataTransform::valid_json?(config) end def self.format_import_row(row) json = parse_config(row['config']) row['config'] = json if json.present? row end end end
Version data entries
4 entries across 4 versions & 1 rubygems